本文整理汇总了Java中org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest类的典型用法代码示例。如果您正苦于以下问题:Java ReorientRelationshipRequest类的具体用法?Java ReorientRelationshipRequest怎么用?Java ReorientRelationshipRequest使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ReorientRelationshipRequest类属于org.eclipse.gmf.runtime.emf.type.core.requests包,在下文中一共展示了ReorientRelationshipRequest类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getReorientRelationshipCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* Returns command to reorient EClass based link. New link target or source
* should be the domain model element associated with this node.
*
* @generated
*/
protected Command getReorientRelationshipCommand(
ReorientRelationshipRequest req) {
switch (getVisualID(req)) {
case SimpleBPMN.diagram.edit.parts.MessageFlowEditPart.VISUAL_ID:
return getGEFWrapper(new SimpleBPMN.diagram.edit.commands.MessageFlowReorientCommand(
req));
case SimpleBPMN.diagram.edit.parts.MessageFlow2EditPart.VISUAL_ID:
return getGEFWrapper(new SimpleBPMN.diagram.edit.commands.MessageFlow2ReorientCommand(
req));
case SimpleBPMN.diagram.edit.parts.SequenceFlowEditPart.VISUAL_ID:
return getGEFWrapper(new SimpleBPMN.diagram.edit.commands.SequenceFlowReorientCommand(
req));
case SimpleBPMN.diagram.edit.parts.SequenceFlow2EditPart.VISUAL_ID:
return getGEFWrapper(new SimpleBPMN.diagram.edit.commands.SequenceFlow2ReorientCommand(
req));
case SimpleBPMN.diagram.edit.parts.AssociationEditPart.VISUAL_ID:
return getGEFWrapper(new SimpleBPMN.diagram.edit.commands.AssociationReorientCommand(
req));
case SimpleBPMN.diagram.edit.parts.Association2EditPart.VISUAL_ID:
return getGEFWrapper(new SimpleBPMN.diagram.edit.commands.Association2ReorientCommand(
req));
}
return super.getReorientRelationshipCommand(req);
}
示例2: getReorientRelationshipCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* Returns command to reorient EClass based link. New link target or source
* should be the domain model element associated with this node.
*
* @generated
*/
protected Command getReorientRelationshipCommand(
ReorientRelationshipRequest req) {
switch (getVisualID(req)) {
case MeansEndEditPart.VISUAL_ID:
return getGEFWrapper(new MeansEndReorientCommand(req));
case DecompositionEditPart.VISUAL_ID:
return getGEFWrapper(new DecompositionReorientCommand(req));
case ContributionEditPart.VISUAL_ID:
return getGEFWrapper(new ContributionReorientCommand(req));
case DependerLinkEditPart.VISUAL_ID:
return getGEFWrapper(new DependerLinkReorientCommand(req));
case DependeeLinkEditPart.VISUAL_ID:
return getGEFWrapper(new DependeeLinkReorientCommand(req));
}
return super.getReorientRelationshipCommand(req);
}
示例3: getReorientRelationshipCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* Returns command to reorient EClass based link. New link target or source
* should be the domain model element associated with this node.
*
* @generated
*/
protected Command getReorientRelationshipCommand(ReorientRelationshipRequest req) {
switch (getVisualID(req)) {
case edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.parts.MeansEndEditPart.VISUAL_ID:
return getGEFWrapper(
new edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.commands.MeansEndReorientCommand(req));
case edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.parts.DecompositionEditPart.VISUAL_ID:
return getGEFWrapper(
new edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.commands.DecompositionReorientCommand(
req));
case edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.parts.ContributionEditPart.VISUAL_ID:
return getGEFWrapper(
new edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.commands.ContributionReorientCommand(
req));
case edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.parts.DependerLinkEditPart.VISUAL_ID:
return getGEFWrapper(
new edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.commands.DependerLinkReorientCommand(
req));
case edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.parts.DependeeLinkEditPart.VISUAL_ID:
return getGEFWrapper(
new edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.commands.DependeeLinkReorientCommand(
req));
}
return super.getReorientRelationshipCommand(req);
}
示例4: TransitionReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
public TransitionReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例5: canExecute
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
public boolean canExecute() {
if (false == getElementToEdit() instanceof Transition) {
return false;
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_SOURCE) {
return canReorientSource();
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_TARGET) {
return canReorientTarget();
}
return false;
}
示例6: doExecuteWithResult
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
IAdaptable info) throws ExecutionException {
if (!canExecute()) {
throw new ExecutionException(
"Invalid arguments in reorient link command"); //$NON-NLS-1$
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_SOURCE) {
return reorientSource();
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_TARGET) {
return reorientTarget();
}
throw new IllegalStateException();
}
示例7: getReorientRelationshipCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* Returns command to reorient EClass based link. New link target or source
* should be the domain model element associated with this node.
*
* @generated
*/
protected Command getReorientRelationshipCommand(
ReorientRelationshipRequest req) {
switch (getVisualID(req)) {
case TransitionEditPart.VISUAL_ID:
return getGEFWrapper(new TransitionReorientCommand(req));
}
return super.getReorientRelationshipCommand(req);
}
示例8: getSemanticCommandSwitch
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的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;
}
示例9: getReorientRelationshipCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
@Override
protected ICommand getReorientRelationshipCommand(
ReorientRelationshipRequest req) {
switch (req.getDirection()) {
case ReorientRelationshipRequest.REORIENT_SOURCE:
return new SetValueCommand(new SetRequest(req.getRelationship(),
SGraphPackage.Literals.TRANSITION__SOURCE,
req.getNewRelationshipEnd()));
case ReorientRelationshipRequest.REORIENT_TARGET:
return new SetValueCommand(new SetRequest(req.getRelationship(),
SGraphPackage.Literals.TRANSITION__TARGET,
req.getNewRelationshipEnd()));
}
return super.getReorientRelationshipCommand(req);
}
示例10: UpdateAnnotationsOnReorientRelationshipCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
public UpdateAnnotationsOnReorientRelationshipCommand(
ReorientRelationshipRequest request,
IGraphicalEditPart sourceEditPart) {
super(request.getEditingDomain(), request.getLabel(), null);
this.request = request;
this.sourceEditPart = sourceEditPart;
}
示例11: canExecute
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
public boolean canExecute() {
if (false == referenceOwner instanceof Contract) {
return false;
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_SOURCE) {
return canReorientSource();
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_TARGET) {
return canReorientTarget();
}
return false;
}
示例12: FactLinkReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
public FactLinkReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例13: canExecute
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
public boolean canExecute() {
if (false == getElementToEdit() instanceof FactLink) {
return false;
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_SOURCE) {
return canReorientSource();
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_TARGET) {
return canReorientTarget();
}
return false;
}
示例14: PlayerBindingReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
public PlayerBindingReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例15: canExecute
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
* @generated
*/
public boolean canExecute() {
if (false == getElementToEdit() instanceof PlayerBinding) {
return false;
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_SOURCE) {
return canReorientSource();
}
if (reorientDirection == ReorientRelationshipRequest.REORIENT_TARGET) {
return canReorientTarget();
}
return false;
}