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

Java DestroyElementRequest类代码示例

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

本文整理汇总了Java中org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest的典型用法代码示例。如果您正苦于以下问题:Java DestroyElementRequest类的具体用法?Java DestroyElementRequest怎么用?Java DestroyElementRequest使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



DestroyElementRequest类属于org.eclipse.gmf.runtime.emf.type.core.requests包,在下文中一共展示了DestroyElementRequest类的19个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getDestroyDependentsCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
@Override
protected ICommand getDestroyDependentsCommand(DestroyDependentsRequest req) {
	
	Vertex elementToDestroy = (Vertex) req.getElementToDestroy();
	EList<Transition> incomingTransitions = elementToDestroy
			.getIncomingTransitions();
	if (incomingTransitions.size() != 0) {
		CompositeCommand compoundCommand = new CompositeCommand(
				"Delete vertex");
		for (Transition transition : incomingTransitions) {
			DestroyElementCommand destroyCommand = new DestroyElementCommand(
					new DestroyElementRequest(transition, false));
			compoundCommand.add(destroyCommand);
		}
		return compoundCommand;
	}
	return super.getDestroyDependentsCommand(req);
}
 
开发者ID:Yakindu,项目名称:statecharts,代码行数:19,代码来源:VertexEditHelper.java


示例2: getBasicDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
@Override
protected ICommand getBasicDestroyElementCommand(final DestroyElementRequest req) {
	// Deletion is only allowed if subdiagrams are not opened in another
	// editor
	return new DestroyElementCommand(req) {
		@Override
		protected IStatus doExecute(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
			if (getElementToDestroy() instanceof State && getElementToDestroy().eResource() != null) {
				boolean success = DiagramPartitioningUtil.closeSubdiagramEditors((State) getElementToDestroy());
				if (success)
					return super.doExecute(monitor, info);
				else
					return Status.CANCEL_STATUS;
			}
			return super.doExecute(monitor, info);
		}
	};
}
 
开发者ID:Yakindu,项目名称:statecharts,代码行数:19,代码来源:RegionEditHelper.java


示例3: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(
			getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:bluezio,项目名称:simplified-bpmn-example,代码行数:20,代码来源:PoolItemSemanticEditPolicy.java


示例4: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(
			getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyChildNodesCommand(cmd);
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:bluezio,项目名称:simplified-bpmn-example,代码行数:21,代码来源:GroupItemSemanticEditPolicy.java


示例5: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:19,代码来源:OperationItemSemanticEditPolicy.java


示例6: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
private void addDestroyChildNodesCommand(ICompositeCommand cmd) {
	View view = (View) getHost().getModel();
	for (Iterator<?> nit = view.getChildren().iterator(); nit.hasNext();) {
		Node node = (Node) nit.next();
		switch (edu.toronto.cs.se.modelepedia.necsis14_classdiagram.diagram.part.NECSIS14_ClassDiagramVisualIDRegistry
				.getVisualID(node)) {
		case edu.toronto.cs.se.modelepedia.necsis14_classdiagram.diagram.edit.parts.ClassClassAttributesCompartmentEditPart.VISUAL_ID:
			for (Iterator<?> cit = node.getChildren().iterator(); cit
					.hasNext();) {
				Node cnode = (Node) cit.next();
				switch (edu.toronto.cs.se.modelepedia.necsis14_classdiagram.diagram.part.NECSIS14_ClassDiagramVisualIDRegistry
						.getVisualID(cnode)) {
				case edu.toronto.cs.se.modelepedia.necsis14_classdiagram.diagram.edit.parts.AttributeEditPart.VISUAL_ID:
					cmd.add(new DestroyElementCommand(
							new DestroyElementRequest(getEditingDomain(),
									cnode.getElement(), false))); // directlyOwned: true
					// don't need explicit deletion of cnode as parent's view deletion would clean child views as well 
					// cmd.add(new org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand(getEditingDomain(), cnode));
					break;
				}
			}
			break;
		}
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:29,代码来源:ClassItemSemanticEditPolicy.java


示例7: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
private void addDestroyChildNodesCommand(ICompositeCommand cmd) {
	View view = (View) getHost().getModel();
	for (Iterator<?> nit = view.getChildren().iterator(); nit.hasNext();) {
		Node node = (Node) nit.next();
		switch (edu.toronto.cs.se.modelepedia.necsis14_databaseschema.diagram.part.NECSIS14_DatabaseSchemaVisualIDRegistry
				.getVisualID(node)) {
		case edu.toronto.cs.se.modelepedia.necsis14_databaseschema.diagram.edit.parts.TableTableColumnsCompartmentEditPart.VISUAL_ID:
			for (Iterator<?> cit = node.getChildren().iterator(); cit
					.hasNext();) {
				Node cnode = (Node) cit.next();
				switch (edu.toronto.cs.se.modelepedia.necsis14_databaseschema.diagram.part.NECSIS14_DatabaseSchemaVisualIDRegistry
						.getVisualID(cnode)) {
				case edu.toronto.cs.se.modelepedia.necsis14_databaseschema.diagram.edit.parts.ColumnEditPart.VISUAL_ID:
					cmd.add(new DestroyElementCommand(
							new DestroyElementRequest(getEditingDomain(),
									cnode.getElement(), false))); // directlyOwned: true
					// don't need explicit deletion of cnode as parent's view deletion would clean child views as well 
					// cmd.add(new org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand(getEditingDomain(), cnode));
					break;
				}
			}
			break;
		}
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:29,代码来源:TableItemSemanticEditPolicy.java


示例8: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	}
	else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:20,代码来源:OperationItemSemanticEditPolicy.java


示例9: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyChildNodesCommand(cmd);
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:awltech,项目名称:eclipse-optimus,代码行数:20,代码来源:TransformationSetExtensionItemSemanticEditPolicy.java


示例10: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
private void addDestroyChildNodesCommand(ICompositeCommand cmd) {
	View view = (View) getHost().getModel();
	for (Iterator<?> nit = view.getChildren().iterator(); nit.hasNext();) {
		Node node = (Node) nit.next();
		switch (StateMachineVisualIDRegistry.getVisualID(node)) {
		case StateStateInternalActionsCompartmentEditPart.VISUAL_ID:
			for (Iterator<?> cit = node.getChildren().iterator(); cit
					.hasNext();) {
				Node cnode = (Node) cit.next();
				switch (StateMachineVisualIDRegistry.getVisualID(cnode)) {
				case StateActionEditPart.VISUAL_ID:
					cmd.add(new DestroyElementCommand(
							new DestroyElementRequest(getEditingDomain(),
									cnode.getElement(), false))); // directlyOwned: true
					// don't need explicit deletion of cnode as parent's view deletion would clean child views as well 
					// cmd.add(new org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand(getEditingDomain(), cnode));
					break;
				}
			}
			break;
		}
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:27,代码来源:StateItemSemanticEditPolicy.java


示例11: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
* @generated
*/
private void addDestroyChildNodesCommand(ICompositeCommand cmd) {
	View view = (View) getHost().getModel();
	for (Iterator<?> nit = view.getChildren().iterator(); nit.hasNext();) {
		Node node = (Node) nit.next();
		switch (edu.toronto.cs.se.modelepedia.statemachine_mavo.diagram.part.StateMachine_MAVOVisualIDRegistry
				.getVisualID(node)) {
		case edu.toronto.cs.se.modelepedia.statemachine_mavo.diagram.edit.parts.StateStateInternalActionsCompartmentEditPart.VISUAL_ID:
			for (Iterator<?> cit = node.getChildren().iterator(); cit.hasNext();) {
				Node cnode = (Node) cit.next();
				switch (edu.toronto.cs.se.modelepedia.statemachine_mavo.diagram.part.StateMachine_MAVOVisualIDRegistry
						.getVisualID(cnode)) {
				case edu.toronto.cs.se.modelepedia.statemachine_mavo.diagram.edit.parts.StateActionEditPart.VISUAL_ID:
					cmd.add(new DestroyElementCommand(
							new DestroyElementRequest(getEditingDomain(), cnode.getElement(), false))); // directlyOwned: true
					// don't need explicit deletion of cnode as parent's view deletion would clean child views as well 
					// cmd.add(new org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand(getEditingDomain(), cnode));
					break;
				}
			}
			break;
		}
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:27,代码来源:StateItemSemanticEditPolicy.java


示例12: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
private void addDestroyChildNodesCommand(ICompositeCommand cmd) {
	View view = (View) getHost().getModel();
	for (Iterator<?> nit = view.getChildren().iterator(); nit.hasNext();) {
		Node node = (Node) nit.next();
		switch (StateVisualIDRegistry.getVisualID(node)) {
		case RegionRegionCitiesCompartmentEditPart.VISUAL_ID:
			for (Iterator<?> cit = node.getChildren().iterator(); cit
					.hasNext();) {
				Node cnode = (Node) cit.next();
				switch (StateVisualIDRegistry.getVisualID(cnode)) {
				case CityEditPart.VISUAL_ID:
					cmd.add(new DestroyElementCommand(
							new DestroyElementRequest(getEditingDomain(),
									cnode.getElement(), false))); // directlyOwned: true
					// don't need explicit deletion of cnode as parent's view deletion would clean child views as well 
					// cmd.add(new org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand(getEditingDomain(), cnode));
					break;
				}
			}
			break;
		}
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:27,代码来源:RegionItemSemanticEditPolicy.java


示例13: getSemanticCommandSwitch

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的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


示例14: UpdateAnnotationsOnDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
public UpdateAnnotationsOnDestroyElementCommand(
		DestroyElementRequest request,
		IGraphicalEditPart parentTreeNodeEditPart) {
	super(request.getEditingDomain(), request.getLabel(), null);
	Assert.isNotNull(request, "request is null.");
	Assert.isNotNull(parentTreeNodeEditPart,
			"parentTreeNodeEditPart is null.");
	this.request = request;
	this.parentTreeNodeEditPart = parentTreeNodeEditPart;
}
 
开发者ID:Yakindu,项目名称:statecharts,代码行数:11,代码来源:UpdateAnnotationsOnDestroyElementCommand.java


示例15: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(
			getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	for (Iterator it = view.getTargetEdges().iterator(); it.hasNext();) {
		Edge incomingLink = (Edge) it.next();
		if (SmcVisualIDRegistry.getVisualID(incomingLink) == PlayerBindingEditPart.VISUAL_ID) {
			DestroyElementRequest r = new DestroyElementRequest(
					incomingLink.getElement(), false);
			cmd.add(new DestroyElementCommand(r));
			cmd.add(new DeleteCommand(getEditingDomain(), incomingLink));
			continue;
		}
	}
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyChildNodesCommand(cmd);
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:31,代码来源:SMCItemSemanticEditPolicy.java


示例16: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(
			getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	for (Iterator it = view.getTargetEdges().iterator(); it.hasNext();) {
		Edge incomingLink = (Edge) it.next();
		if (SmcVisualIDRegistry.getVisualID(incomingLink) == PlayerBindingEditPart.VISUAL_ID) {
			DestroyElementRequest r = new DestroyElementRequest(
					incomingLink.getElement(), false);
			cmd.add(new DestroyElementCommand(r));
			cmd.add(new DeleteCommand(getEditingDomain(), incomingLink));
			continue;
		}
	}
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:road-framework,项目名称:ROADDesigner,代码行数:30,代码来源:PlayerItemSemanticEditPolicy.java


示例17: getDestroyElementCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
* @generated
*/
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(false);
	for (Iterator<?> it = view.getTargetEdges().iterator(); it.hasNext();) {
		Edge incomingLink = (Edge) it.next();
		if (edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.part.ICSE15_SequenceDiagram_MAVOVisualIDRegistry
				.getVisualID(
						incomingLink) == edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.edit.parts.ClassReferenceEditPart.VISUAL_ID) {
			DestroyElementRequest r = new DestroyElementRequest(incomingLink.getElement(), false);
			cmd.add(new DestroyElementCommand(r));
			cmd.add(new DeleteCommand(getEditingDomain(), incomingLink));
			continue;
		}
	}
	EAnnotation annotation = view.getEAnnotation("Shortcut"); //$NON-NLS-1$
	if (annotation == null) {
		// there are indirectly referenced children, need extra commands: false
		addDestroyChildNodesCommand(cmd);
		addDestroyShortcutsCommand(cmd, view);
		// delete host element
		cmd.add(new DestroyElementCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:31,代码来源:ClassItemSemanticEditPolicy.java


示例18: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的package包/类
/**
* @generated
*/
private void addDestroyChildNodesCommand(ICompositeCommand cmd) {
	View view = (View) getHost().getModel();
	for (Iterator<?> nit = view.getChildren().iterator(); nit.hasNext();) {
		Node node = (Node) nit.next();
		switch (edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.part.ICSE15_SequenceDiagram_MAVOVisualIDRegistry
				.getVisualID(node)) {
		case edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.edit.parts.ClassClassOperationsCompartmentEditPart.VISUAL_ID:
			for (Iterator<?> cit = node.getChildren().iterator(); cit.hasNext();) {
				Node cnode = (Node) cit.next();
				switch (edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.part.ICSE15_SequenceDiagram_MAVOVisualIDRegistry
						.getVisualID(cnode)) {
				case edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.edit.parts.OperationEditPart.VISUAL_ID:
					for (Iterator<?> it = cnode.getTargetEdges().iterator(); it.hasNext();) {
						Edge incomingLink = (Edge) it.next();
						if (edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.part.ICSE15_SequenceDiagram_MAVOVisualIDRegistry
								.getVisualID(
										incomingLink) == edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.edit.parts.OperationReferenceEditPart.VISUAL_ID) {
							DestroyElementRequest r = new DestroyElementRequest(incomingLink.getElement(), false);
							cmd.add(new DestroyElementCommand(r));
							cmd.add(new DeleteCommand(getEditingDomain(), incomingLink));
							continue;
						}
					}
					cmd.add(new DestroyElementCommand(
							new DestroyElementRequest(getEditingDomain(), cnode.getElement(), false))); // directlyOwned: true
					// don't need explicit deletion of cnode as parent's view deletion would clean child views as well 
					// cmd.add(new org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand(getEditingDomain(), cnode));
					break;
				}
			}
			break;
		}
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:38,代码来源:ClassItemSemanticEditPolicy.java


示例19: getSemanticCommandSwitch

import org.eclipse.gmf.runtime.emf.type.core.requests.DestroyElementRequest; //导入依赖的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



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
Java ByteArrayByteIterator类代码示例发布时间:2022-05-23
下一篇:
Java RecipesFurnace类代码示例发布时间: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