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


Java ICompositeCommand类代码示例

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


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

示例1: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的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

示例2: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的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

示例3: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的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

示例4: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的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

示例5: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的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

示例6: addDestroyShortcutsCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的package包/类
/**
 * Clean all shortcuts to the host element from the same diagram
 * @generated
 */
protected void addDestroyShortcutsCommand(ICompositeCommand cmd, View view) {
	assert view.getEAnnotation("Shortcut") == null; //$NON-NLS-1$
	for (Iterator it = view.getDiagram().getChildren().iterator(); it
			.hasNext();) {
		View nextView = (View) it.next();
		if (nextView.getEAnnotation("Shortcut") == null || !nextView.isSetElement() || nextView.getElement() != view.getElement()) { //$NON-NLS-1$
			continue;
		}
		cmd.add(new DeleteCommand(getEditingDomain(), nextView));
	}
}
 
开发者ID:spoenemann,项目名称:xtext-gef,代码行数:16,代码来源:StatemachineBaseItemSemanticEditPolicy.java

示例7: addDestroyChildNodesCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的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

示例8: addDestroyShortcutsCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的package包/类
/**
* Clean all shortcuts to the host element from the same diagram
* @generated
*/
protected void addDestroyShortcutsCommand(ICompositeCommand cmd, View view) {
	assert view.getEAnnotation("Shortcut") == null; //$NON-NLS-1$
	for (Iterator it = view.getDiagram().getChildren().iterator(); it.hasNext();) {
		View nextView = (View) it.next();
		if (nextView.getEAnnotation("Shortcut") == null || !nextView.isSetElement() //$NON-NLS-1$
				|| nextView.getElement() != view.getElement()) {
			continue;
		}
		cmd.add(new DeleteCommand(getEditingDomain(), nextView));
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:16,代码来源:ICSE15_SequenceDiagram_MAVOBaseItemSemanticEditPolicy.java

示例9: addDestroyShortcutsCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的package包/类
/**
* Clean all shortcuts to the host element from the same diagram
 * @generated
 */
protected void addDestroyShortcutsCommand(ICompositeCommand cmd, View view) {
	assert view.getEAnnotation("Shortcut") == null; //$NON-NLS-1$
	for (Iterator it = view.getDiagram().getChildren().iterator(); it.hasNext();) {
		View nextView = (View) it.next();
		if (nextView.getEAnnotation("Shortcut") == null || !nextView.isSetElement() //$NON-NLS-1$
				|| nextView.getElement() != view.getElement()) {
			continue;
		}
		cmd.add(new DeleteCommand(getEditingDomain(), nextView));
	}
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:16,代码来源:MIDBaseItemSemanticEditPolicy.java

示例10: addDestroyShortcutsCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的package包/类
/**
 * Clean all shortcuts to the host element from the same diagram
 * @generated
 */
protected void addDestroyShortcutsCommand(ICompositeCommand cmd, View view) {
    assert view.getEAnnotation("Shortcut") == null; //$NON-NLS-1$
    for (Iterator it = view.getDiagram().getChildren().iterator(); it
            .hasNext();) {
        View nextView = (View) it.next();
        if (nextView.getEAnnotation("Shortcut") == null || !nextView.isSetElement() || nextView.getElement() != view.getElement()) { //$NON-NLS-1$
            continue;
        }
        cmd.add(new DeleteCommand(getEditingDomain(), nextView));
    }
}
 
开发者ID:d-case,项目名称:d-case_editor,代码行数:16,代码来源:DcaseBaseItemSemanticEditPolicy.java

示例11: addDestroyShortcutsCommand

import org.eclipse.gmf.runtime.common.core.command.ICompositeCommand; //导入依赖的package包/类
/**
 * Clean all shortcuts to the host element from the same diagram
 * @generated
 */
protected void addDestroyShortcutsCommand(ICompositeCommand cmd, View view) {
	assert view.getEAnnotation("Shortcut") == null; //$NON-NLS-1$
	for (Iterator it = view.getDiagram().getChildren().iterator(); it.hasNext();) {
		View nextView = (View) it.next();
		if (nextView.getEAnnotation("Shortcut") == null || !nextView.isSetElement() || nextView.getElement() != view.getElement()) { //$NON-NLS-1$
			continue;
		}
		cmd.add(new DeleteCommand(getEditingDomain(), nextView));
	}
}
 
开发者ID:awltech,项目名称:eclipse-optimus,代码行数:15,代码来源:TransformationDependencyBaseItemSemanticEditPolicy.java


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