当前位置: 首页>>代码示例>>Java>>正文


Java ReorientRelationshipRequest类代码示例

本文整理汇总了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);
}
 
开发者ID:bluezio,项目名称:simplified-bpmn-example,代码行数:31,代码来源:EndEventItemSemanticEditPolicy.java

示例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);
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:23,代码来源:Resource2ItemSemanticEditPolicy.java

示例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);
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:31,代码来源:TaskItemSemanticEditPolicy.java

示例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();
}
 
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:10,代码来源:TransitionReorientCommand.java

示例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;
}
 
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:16,代码来源:TransitionReorientCommand.java

示例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();
}
 
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:18,代码来源:TransitionReorientCommand.java

示例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);
}
 
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:15,代码来源:StateItemSemanticEditPolicy.java

示例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;
}
 
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:30,代码来源:StatemachineBaseItemSemanticEditPolicy.java

示例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);
}
 
开发者ID:Yakindu,项目名称:statecharts,代码行数:16,代码来源:TransitionEditHelper.java

示例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;
}
 
开发者ID:Yakindu,项目名称:statecharts,代码行数:8,代码来源:UpdateAnnotationsOnReorientRelationshipCommand.java

示例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;
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:16,代码来源:ContractRoleBIDReorientCommand.java

示例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();
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:10,代码来源:FactLinkReorientCommand.java

示例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;
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:16,代码来源:FactLinkReorientCommand.java

示例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();
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:10,代码来源:PlayerBindingReorientCommand.java

示例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;
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:16,代码来源:PlayerBindingReorientCommand.java


注:本文中的org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。