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

Java CreateViewRequest类代码示例

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

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



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

示例1: getCreateCommand

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
@Override
protected Command getCreateCommand(CreateViewRequest request) {
	StateEditPart parent = (StateEditPart) getHost().getParent();
	BooleanValueStyle isInline = GMFNotationUtil.getBooleanValueStyle(parent.getNotationView(),
			DiagramPartitioningUtil.INLINE_STYLE);
	if (isInline != null && !isInline.isBooleanValue())
		return UnexecutableCommand.INSTANCE;

	List<? extends ViewDescriptor> viewDescriptors = request.getViewDescriptors();
	for (ViewDescriptor viewDescriptor : viewDescriptors) {
		String semanticHint = viewDescriptor.getSemanticHint();
		if (ViewType.NOTE.equals(semanticHint) || ViewType.NOTEATTACHMENT.equals(semanticHint)
				|| ViewType.TEXT.equals(semanticHint)) {
			return UnexecutableCommand.INSTANCE;
		}
	}
	return super.getCreateCommand(request);
}
 
开发者ID:Yakindu,项目名称:statecharts,代码行数:19,代码来源:StateCompartmentCreationEditPolicy.java


示例2: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
		IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it
				.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE
					.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation
					.getDetails()
					.put("modelID", SimpleBPMN.diagram.edit.parts.BusinessProcessDiagramEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:bluezio,项目名称:simplified-bpmn-example,代码行数:22,代码来源:SimpleBPMNCreateShortcutDecorationsCommand.java


示例3: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
		IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it
				.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE
					.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation
					.getDetails()
					.put("modelID", edu.toronto.cs.se.modelepedia.necsis14_classdiagram.diagram.edit.parts.ClassDiagramEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:22,代码来源:NECSIS14_ClassDiagramCreateShortcutDecorationsCommand.java


示例4: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
		IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it
				.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE
					.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation
					.getDetails()
					.put("modelID", edu.toronto.cs.se.modelepedia.necsis14_databaseschema.diagram.edit.parts.DatabaseSchemaEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:22,代码来源:NECSIS14_DatabaseSchemaCreateShortcutDecorationsCommand.java


示例5: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
		IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it
				.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE
					.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put(
					"modelID", RelationalDatabaseEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:21,代码来源:RelationalDatabaseCreateShortcutDecorationsCommand.java


示例6: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
		IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it
				.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE
					.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put(
					"modelID", IStarEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:21,代码来源:IStarCreateShortcutDecorationsCommand.java


示例7: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor,
		IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it
				.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE
					.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put(
					"modelID", StateMachineEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:21,代码来源:StateMachineCreateShortcutDecorationsCommand.java


示例8: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
    for (Iterator<?> it = myDescriptors.iterator(); it.hasNext();) {
        CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it.next();
        View view = (View) nextDescriptor.getAdapter(View.class);
        if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
            EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE.createEAnnotation();
            shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
            shortcutAnnotation.getDetails().put("modelID", RepositoryEditPart.MODEL_ID); //$NON-NLS-1$
            view.getEAnnotations().add(shortcutAnnotation);
        }
    }
    return CommandResult.newOKCommandResult();
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:17,代码来源:PalladioComponentModelCreateShortcutDecorationsCommand.java


示例9: SimpleBPMNCreateShortcutDecorationsCommand

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
public SimpleBPMNCreateShortcutDecorationsCommand(
		TransactionalEditingDomain editingDomain, View parentView,
		CreateViewRequest.ViewDescriptor viewDescriptor) {
	this(editingDomain, parentView, Collections
			.singletonList(viewDescriptor));
}
 
开发者ID:bluezio,项目名称:simplified-bpmn-example,代码行数:10,代码来源:SimpleBPMNCreateShortcutDecorationsCommand.java


示例10: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
* @generated
*/
protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put("modelID", //$NON-NLS-1$
					edu.toronto.cs.se.modelepedia.icse15_sequencediagram_mavo.diagram.edit.parts.SequenceDiagramEditPart.MODEL_ID);
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:18,代码来源:ICSE15_SequenceDiagram_MAVOCreateShortcutDecorationsCommand.java


示例11: NECSIS14_ClassDiagramCreateShortcutDecorationsCommand

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
public NECSIS14_ClassDiagramCreateShortcutDecorationsCommand(
		TransactionalEditingDomain editingDomain, View parentView,
		CreateViewRequest.ViewDescriptor viewDescriptor) {
	this(editingDomain, parentView, Collections
			.singletonList(viewDescriptor));
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:NECSIS14_ClassDiagramCreateShortcutDecorationsCommand.java


示例12: NECSIS14_DatabaseSchemaCreateShortcutDecorationsCommand

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
public NECSIS14_DatabaseSchemaCreateShortcutDecorationsCommand(
		TransactionalEditingDomain editingDomain, View parentView,
		CreateViewRequest.ViewDescriptor viewDescriptor) {
	this(editingDomain, parentView, Collections
			.singletonList(viewDescriptor));
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:NECSIS14_DatabaseSchemaCreateShortcutDecorationsCommand.java


示例13: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put("modelID", MIDEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:17,代码来源:MIDCreateShortcutDecorationsCommand.java


示例14: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
* @generated
*/
protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put("modelID", ModelRelEditPart.MODEL_ID); //$NON-NLS-1$
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:17,代码来源:MIDCreateShortcutDecorationsCommand.java


示例15: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
* @generated
*/
protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put("modelID", //$NON-NLS-1$
					edu.toronto.cs.se.modelepedia.relationaldatabase_mavo.diagram.edit.parts.RelationalDatabaseEditPart.MODEL_ID);
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:18,代码来源:RelationalDatabase_MAVOCreateShortcutDecorationsCommand.java


示例16: RelationalDatabaseCreateShortcutDecorationsCommand

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
public RelationalDatabaseCreateShortcutDecorationsCommand(
		TransactionalEditingDomain editingDomain, View parentView,
		CreateViewRequest.ViewDescriptor viewDescriptor) {
	this(editingDomain, parentView, Collections
			.singletonList(viewDescriptor));
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:RelationalDatabaseCreateShortcutDecorationsCommand.java


示例17: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
* @generated
*/
protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put("modelID", //$NON-NLS-1$
					edu.toronto.cs.se.modelepedia.istar_mavo.diagram.edit.parts.IStarEditPart.MODEL_ID);
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:18,代码来源:IStar_MAVOCreateShortcutDecorationsCommand.java


示例18: IStarCreateShortcutDecorationsCommand

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
public IStarCreateShortcutDecorationsCommand(
		TransactionalEditingDomain editingDomain, View parentView,
		CreateViewRequest.ViewDescriptor viewDescriptor) {
	this(editingDomain, parentView, Collections
			.singletonList(viewDescriptor));
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:IStarCreateShortcutDecorationsCommand.java


示例19: StateMachineCreateShortcutDecorationsCommand

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
 * @generated
 */
public StateMachineCreateShortcutDecorationsCommand(
		TransactionalEditingDomain editingDomain, View parentView,
		CreateViewRequest.ViewDescriptor viewDescriptor) {
	this(editingDomain, parentView, Collections
			.singletonList(viewDescriptor));
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:10,代码来源:StateMachineCreateShortcutDecorationsCommand.java


示例20: doExecuteWithResult

import org.eclipse.gmf.runtime.diagram.ui.requests.CreateViewRequest; //导入依赖的package包/类
/**
* @generated
*/
protected CommandResult doExecuteWithResult(IProgressMonitor monitor, IAdaptable info) throws ExecutionException {
	for (Iterator it = myDescriptors.iterator(); it.hasNext();) {
		CreateViewRequest.ViewDescriptor nextDescriptor = (CreateViewRequest.ViewDescriptor) it.next();
		View view = (View) nextDescriptor.getAdapter(View.class);
		if (view != null && view.getEAnnotation("Shortcut") == null) { //$NON-NLS-1$
			EAnnotation shortcutAnnotation = EcoreFactory.eINSTANCE.createEAnnotation();
			shortcutAnnotation.setSource("Shortcut"); //$NON-NLS-1$
			shortcutAnnotation.getDetails().put("modelID", //$NON-NLS-1$
					edu.toronto.cs.se.modelepedia.statemachine_mavo.diagram.edit.parts.StateMachineEditPart.MODEL_ID);
			view.getEAnnotations().add(shortcutAnnotation);
		}
	}
	return CommandResult.newOKCommandResult();
}
 
开发者ID:adisandro,项目名称:MMINT,代码行数:18,代码来源:StateMachine_MAVOCreateShortcutDecorationsCommand.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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