本文整理汇总了Java中org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest.getOldRelationshipEnd方法的典型用法代码示例。如果您正苦于以下问题:Java ReorientRelationshipRequest.getOldRelationshipEnd方法的具体用法?Java ReorientRelationshipRequest.getOldRelationshipEnd怎么用?Java ReorientRelationshipRequest.getOldRelationshipEnd使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest
的用法示例。
在下文中一共展示了ReorientRelationshipRequest.getOldRelationshipEnd方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: 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();
}
示例2: 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();
}
示例3: 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();
}
示例4: 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();
}
示例5: 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();
}
示例6: Association2ReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public Association2ReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例7: SequenceFlow2ReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public SequenceFlow2ReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例8: AssociationReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public AssociationReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例9: MessageFlowReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public MessageFlowReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例10: MessageFlow2ReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public MessageFlow2ReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例11: SequenceFlowReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public SequenceFlowReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例12: NestedInReferenceReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public NestedInReferenceReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例13: ClassReferenceReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public ClassReferenceReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例14: DcaseLink003ReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public DcaseLink003ReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}
示例15: SelfRequirementReorientCommand
import org.eclipse.gmf.runtime.emf.type.core.requests.ReorientRelationshipRequest; //导入方法依赖的package包/类
/**
* @generated
*/
public SelfRequirementReorientCommand(ReorientRelationshipRequest request) {
super(request.getLabel(), request.getRelationship(), request);
reorientDirection = request.getDirection();
oldEnd = request.getOldRelationshipEnd();
newEnd = request.getNewRelationshipEnd();
}