• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ReorientRelationshipRequest类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了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类的18个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的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


示例16: FactLink2ReorientCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
 * @generated
 */
public FactLink2ReorientCommand(ReorientRelationshipRequest request) {
	super(request.getLabel(), request.getRelationship(), request);
	reorientDirection = request.getDirection();
	oldEnd = request.getOldRelationshipEnd();
	newEnd = request.getNewRelationshipEnd();
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:10,代码来源:FactLink2ReorientCommand.java


示例17: ExternalFactLinkReorientCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
 * @generated
 */
public ExternalFactLinkReorientCommand(ReorientRelationshipRequest request) {
	super(request.getLabel(), request.getRelationship(), request);
	reorientDirection = request.getDirection();
	oldEnd = request.getOldRelationshipEnd();
	newEnd = request.getNewRelationshipEnd();
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:10,代码来源:ExternalFactLinkReorientCommand.java


示例18: canExecute

import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入依赖的package包/类
/**
 * @generated
 */
public boolean canExecute() {
	if (false == getElementToEdit() instanceof ExternalFactLink) {
		return false;
	}
	if (reorientDirection == ReorientRelationshipRequest.REORIENT_SOURCE) {
		return canReorientSource();
	}
	if (reorientDirection == ReorientRelationshipRequest.REORIENT_TARGET) {
		return canReorientTarget();
	}
	return false;
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:16,代码来源:ExternalFactLinkReorientCommand.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java CommandManager类代码示例发布时间:2022-05-23
下一篇:
Java SyndFeedImpl类代码示例发布时间:2022-05-23
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap