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


Java DeleteCommand类代码示例

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


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

示例1: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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

示例2: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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

示例3: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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:adisandro,项目名称:MMINT,代码行数:20,代码来源:TableItemSemanticEditPolicy.java

示例4: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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,代码来源:StateActionItemSemanticEditPolicy.java

示例5: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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,代码来源:AttributeItemSemanticEditPolicy.java

示例6: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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

示例7: addDeleteViewCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的package包/类
/**
 * @generated
 */
protected Command addDeleteViewCommand(Command mainCommand,
		DestroyRequest completedRequest) {
	Command deleteViewCommand = getGEFWrapper(new DeleteCommand(
			getEditingDomain(), (View) getHost().getModel()));
	return mainCommand == null ? deleteViewCommand : mainCommand
			.chain(deleteViewCommand);
}
 
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:11,代码来源:StatemachineBaseItemSemanticEditPolicy.java

示例8: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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

示例9: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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

示例10: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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

示例11: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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

示例12: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的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.OperationReferenceEditPart.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:adisandro,项目名称:MMINT,代码行数:30,代码来源:OperationItemSemanticEditPolicy.java

示例13: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的package包/类
protected Command getDestroyElementCommand(DestroyElementRequest req) {
	View view = (View) getHost().getModel();
	CompositeTransactionalCommand cmd = new CompositeTransactionalCommand(
			getEditingDomain(), null);
	cmd.setTransactionNestingEnabled(true);
	for (Iterator<?> it = view.getTargetEdges().iterator(); it.hasNext();) {
		Edge incomingLink = (Edge) it.next();
		if (MIDVisualIDRegistry.getVisualID(incomingLink) == ExtendibleElementSupertypeEditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), incomingLink));
			continue;
		}
	}
	for (Iterator<?> it = view.getSourceEdges().iterator(); it.hasNext();) {
		Edge outgoingLink = (Edge) it.next();
		if (MIDVisualIDRegistry.getVisualID(outgoingLink) == ExtendibleElementSupertypeEditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), outgoingLink));
			continue;
		}
		if (MIDVisualIDRegistry.getVisualID(outgoingLink) == ModelEndpoint2EditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), outgoingLink));
			continue;
		}
		if (MIDVisualIDRegistry.getVisualID(outgoingLink) == ModelEndpoint3EditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), outgoingLink));
			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 OperatorDelCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:39,代码来源:OperatorSemanticEditPolicy.java

示例14: getDestroyElementCommand

import org.eclipse.gmf.runtime.diagram.core.commands.DeleteCommand; //导入依赖的package包/类
@Override
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 (MIDVisualIDRegistry.getVisualID(incomingLink) == ExtendibleElementReferenceSupertypeRefEditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), incomingLink));
			continue;
		}
	}
	for (Iterator<?> it = view.getSourceEdges().iterator(); it.hasNext();) {
		Edge outgoingLink = (Edge) it.next();
		if (MIDVisualIDRegistry.getVisualID(outgoingLink) == ExtendibleElementReferenceSupertypeRefEditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), outgoingLink));
			continue;
		}
		if (MIDVisualIDRegistry.getVisualID(outgoingLink) == ModelElementEndpointReferenceEditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), outgoingLink));
			continue;
		}
		if (MIDVisualIDRegistry.getVisualID(outgoingLink) == ModelElementEndpointReference2EditPart.VISUAL_ID) {
			cmd.add(new DeleteCommand(getEditingDomain(), outgoingLink));
			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 MappingReferenceDelCommand(req));
	} else {
		cmd.add(new DeleteCommand(getEditingDomain(), view));
	}
	return getGEFWrapper(cmd.reduce());
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:40,代码来源:MappingReferenceSemanticEditPolicy.java


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