本文整理汇总了Java中org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest类的典型用法代码示例。如果您正苦于以下问题:Java IEditCommandRequest类的具体用法?Java IEditCommandRequest怎么用?Java IEditCommandRequest使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
IEditCommandRequest类属于org.eclipse.gmf.runtime.emf.type.core.requests包,在下文中一共展示了IEditCommandRequest类的18个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: getInsteadCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected ICommand getInsteadCommand(IEditCommandRequest req) {
ICommand epCommand = (ICommand) req.getParameter(EDIT_POLICY_COMMAND);
req.setParameter(EDIT_POLICY_COMMAND, null);
ICommand ehCommand = super.getInsteadCommand(req);
if (epCommand == null) {
return ehCommand;
}
if (ehCommand == null) {
return epCommand;
}
CompositeCommand command = new CompositeCommand(null);
command.add(epCommand);
command.add(ehCommand);
return command;
}
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:19,代码来源:SmcBaseEditHelper.java
示例2: getInsteadCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected ICommand getInsteadCommand(IEditCommandRequest req) {
ICommand epCommand = (ICommand) req.getParameter(EDIT_POLICY_COMMAND);
req.setParameter(EDIT_POLICY_COMMAND, null);
ICommand ehCommand = super.getInsteadCommand(req);
if (epCommand == null) {
return ehCommand;
}
if (ehCommand == null) {
return epCommand;
}
CompositeCommand command = new CompositeCommand(null);
command.add(epCommand);
command.add(ehCommand);
return command;
}
开发者ID:d-case,项目名称:d-case_editor,代码行数:19,代码来源:DcaseBaseEditHelper.java
示例3: getSemanticCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getSemanticCommand(IEditCommandRequest request) {
IEditCommandRequest completedRequest = completeRequest(request);
Command semanticCommand = getSemanticCommandSwitch(completedRequest);
semanticCommand = getEditHelperCommand(completedRequest,
semanticCommand);
if (completedRequest instanceof DestroyRequest) {
DestroyRequest destroyRequest = (DestroyRequest) completedRequest;
return shouldProceed(destroyRequest) ? addDeleteViewCommand(
semanticCommand, destroyRequest) : null;
}
return semanticCommand;
}
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:16,代码来源:StatemachineBaseItemSemanticEditPolicy.java
示例4: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = StatemachineElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:10,代码来源:StatemachineBaseItemSemanticEditPolicy.java
示例5: getSemanticCommandSwitch
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getSemanticCommandSwitch(IEditCommandRequest req) {
if (req instanceof CreateRelationshipRequest) {
return getCreateRelationshipCommand((CreateRelationshipRequest) req);
} else if (req instanceof CreateElementRequest) {
return getCreateCommand((CreateElementRequest) req);
} else if (req instanceof ConfigureRequest) {
return getConfigureCommand((ConfigureRequest) req);
} else if (req instanceof DestroyElementRequest) {
return getDestroyElementCommand((DestroyElementRequest) req);
} else if (req instanceof DestroyReferenceRequest) {
return getDestroyReferenceCommand((DestroyReferenceRequest) req);
} else if (req instanceof DuplicateElementsRequest) {
return getDuplicateCommand((DuplicateElementsRequest) req);
} else if (req instanceof GetEditContextRequest) {
return getEditContextCommand((GetEditContextRequest) req);
} else if (req instanceof MoveRequest) {
return getMoveCommand((MoveRequest) req);
} else if (req instanceof ReorientReferenceRelationshipRequest) {
return getReorientReferenceRelationshipCommand((ReorientReferenceRelationshipRequest) req);
} else if (req instanceof ReorientRelationshipRequest) {
return getReorientRelationshipCommand((ReorientRelationshipRequest) req);
} else if (req instanceof SetRequest) {
return getSetCommand((SetRequest) req);
}
return null;
}
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:30,代码来源:StatemachineBaseItemSemanticEditPolicy.java
示例6: getEditHelperAdvice
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected IEditHelperAdvice[] getEditHelperAdvice(IEditCommandRequest req) {
if (req.getParameter(CONTEXT_ELEMENT_TYPE) instanceof IElementType) {
return ElementTypeRegistry.getInstance().getEditHelperAdvice(
(IElementType) req.getParameter(CONTEXT_ELEMENT_TYPE));
}
return super.getEditHelperAdvice(req);
}
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:11,代码来源:SmcBaseEditHelper.java
示例7: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = SmcElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:10,代码来源:SmcBaseItemSemanticEditPolicy.java
示例8: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = Wc2014ElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:ggxx,项目名称:HelloBrazil,代码行数:10,代码来源:Wc2014BaseItemSemanticEditPolicy.java
示例9: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = SimpleBPMN.diagram.providers.SimpleBPMNElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:bluezio,项目名称:simplified-bpmn-example,代码行数:10,代码来源:SimpleBPMNBaseItemSemanticEditPolicy.java
示例10: getSemanticCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getSemanticCommand(IEditCommandRequest request) {
IEditCommandRequest completedRequest = completeRequest(request);
Command semanticCommand = getSemanticCommandSwitch(completedRequest);
semanticCommand = getEditHelperCommand(completedRequest, semanticCommand);
if (completedRequest instanceof DestroyRequest) {
DestroyRequest destroyRequest = (DestroyRequest) completedRequest;
return shouldProceed(destroyRequest) ? addDeleteViewCommand(semanticCommand, destroyRequest) : null;
}
return semanticCommand;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:14,代码来源:ICSE15_SequenceDiagram_MAVOBaseItemSemanticEditPolicy.java
示例11: getSemanticCommandSwitch
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getSemanticCommandSwitch(IEditCommandRequest req) {
if (req instanceof CreateRelationshipRequest) {
return getCreateRelationshipCommand((CreateRelationshipRequest) req);
} else if (req instanceof CreateElementRequest) {
return getCreateCommand((CreateElementRequest) req);
} else if (req instanceof ConfigureRequest) {
return getConfigureCommand((ConfigureRequest) req);
} else if (req instanceof DestroyElementRequest) {
return getDestroyElementCommand((DestroyElementRequest) req);
} else if (req instanceof DestroyReferenceRequest) {
return getDestroyReferenceCommand((DestroyReferenceRequest) req);
} else if (req instanceof DuplicateElementsRequest) {
return getDuplicateCommand((DuplicateElementsRequest) req);
} else if (req instanceof GetEditContextRequest) {
return getEditContextCommand((GetEditContextRequest) req);
} else if (req instanceof MoveRequest) {
return getMoveCommand((MoveRequest) req);
} else if (req instanceof ReorientReferenceRelationshipRequest) {
return getReorientReferenceRelationshipCommand((ReorientReferenceRelationshipRequest) req);
} else if (req instanceof ReorientRelationshipRequest) {
return getReorientRelationshipCommand((ReorientRelationshipRequest) req);
} else if (req instanceof SetRequest) {
return getSetCommand((SetRequest) req);
}
return null;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:30,代码来源:ICSE15_SequenceDiagram_MAVOBaseItemSemanticEditPolicy.java
示例12: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = edu.toronto.cs.se.modelepedia.necsis14_classdiagram.diagram.providers.NECSIS14_ClassDiagramElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:NECSIS14_ClassDiagramBaseItemSemanticEditPolicy.java
示例13: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = edu.toronto.cs.se.modelepedia.necsis14_databaseschema.diagram.providers.NECSIS14_DatabaseSchemaElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:NECSIS14_DatabaseSchemaBaseItemSemanticEditPolicy.java
示例14: getSemanticCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getSemanticCommand(IEditCommandRequest request) {
IEditCommandRequest completedRequest = completeRequest(request);
Command semanticCommand = getSemanticCommandSwitch(completedRequest);
semanticCommand = getEditHelperCommand(completedRequest, semanticCommand);
if (completedRequest instanceof DestroyRequest) {
DestroyRequest destroyRequest = (DestroyRequest) completedRequest;
return shouldProceed(destroyRequest) ? addDeleteViewCommand(semanticCommand, destroyRequest) : null;
}
return semanticCommand;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:14,代码来源:MIDBaseItemSemanticEditPolicy.java
示例15: getSemanticCommandSwitch
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getSemanticCommandSwitch(IEditCommandRequest req) {
if (req instanceof CreateRelationshipRequest) {
return getCreateRelationshipCommand((CreateRelationshipRequest) req);
}
else if (req instanceof CreateElementRequest) {
return getCreateCommand((CreateElementRequest) req);
}
else if (req instanceof ConfigureRequest) {
return getConfigureCommand((ConfigureRequest) req);
}
else if (req instanceof DestroyElementRequest) {
return getDestroyElementCommand((DestroyElementRequest) req);
}
else if (req instanceof DestroyReferenceRequest) {
return getDestroyReferenceCommand((DestroyReferenceRequest) req);
}
else if (req instanceof DuplicateElementsRequest) {
return getDuplicateCommand((DuplicateElementsRequest) req);
}
else if (req instanceof GetEditContextRequest) {
return getEditContextCommand((GetEditContextRequest) req);
}
else if (req instanceof MoveRequest) {
return getMoveCommand((MoveRequest) req);
}
else if (req instanceof ReorientReferenceRelationshipRequest) {
return getReorientReferenceRelationshipCommand((ReorientReferenceRelationshipRequest) req);
}
else if (req instanceof ReorientRelationshipRequest) {
return getReorientRelationshipCommand((ReorientRelationshipRequest) req);
}
else if (req instanceof SetRequest) {
return getSetCommand((SetRequest) req);
}
return null;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:40,代码来源:MIDBaseItemSemanticEditPolicy.java
示例16: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = RelationalDatabaseElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:RelationalDatabaseBaseItemSemanticEditPolicy.java
示例17: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = IStarElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:IStarBaseItemSemanticEditPolicy.java
示例18: getContextElementType
import org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest; //导入依赖的package包/类
/**
* @generated
*/
private IElementType getContextElementType(IEditCommandRequest request) {
IElementType requestContextElementType = StateMachineElementTypes
.getElementType(getVisualID(request));
return requestContextElementType != null ? requestContextElementType
: myElementType;
}
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:StateMachineBaseItemSemanticEditPolicy.java
注:本文中的org.eclipse.gmf.runtime.emf.type.core.requests.IEditCommandRequest类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论