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

Java ECommandService类代码示例

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

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



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

示例1: createContents

import org.eclipse.e4.core.commands.ECommandService; //导入依赖的package包/类
@PostConstruct
public Control createContents(Composite parent, NLPService nlpService, ECommandService commandService, EHandlerService handlerService) {
	l = new Label(parent, SWT.None);
	int size = 0;
	updateSize(nlpService);
	Button b = new Button(parent, SWT.PUSH);
	b.setImage(TermSuiteUI.getImg(TermSuiteUI.IMG_CLEAR_CO).createImage());
	b.setSize(50, -1);
	b.setToolTipText("Clear all preprocessed corpus save in cache");
	b.addSelectionListener(new SelectionAdapter() {
		@Override
		public void widgetSelected(SelectionEvent e) {
			Command command = commandService.getCommand(TermSuiteUI.COMMAND_CLEAR_CACHE_ID);
		    ParameterizedCommand pCmd = new ParameterizedCommand(command, null);
		    if (handlerService.canExecute(pCmd)) 
		    	handlerService.executeHandler(pCmd);
		}
	});
	return parent;
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:21,代码来源:WorskpaceSizeControl.java


示例2: execute

import org.eclipse.e4.core.commands.ECommandService; //导入依赖的package包/类
@Execute
public void execute(EPartService partService, 
		@Named(IServiceConstants.ACTIVE_SHELL) Shell shell,
		EModelService modelService,
		ResourceService resourceService,
		ECommandService commandService,
		EHandlerService handlerService,

		IEclipseContext context,
		MApplication mApplication) {
	
	NewPipelineDialog dialog = new NewPipelineDialog(shell, resourceService);
	if(dialog.open() == Dialog.OK) {
		
		String filename = dialog.getFilename();
		EPipeline pipeline;
		try {
			pipeline = resourceService.createPipeline(filename);
			ParameterizedCommand command = commandService.createCommand(
					OpenObjectHandler.COMMAND_ID, 
					CommandUtil.params(OpenObjectHandler.PARAM_INPUT_OBJECT_ID, resourceService.getResourceId(pipeline)));
			if(handlerService.canExecute(command))
				handlerService.executeHandler(command);

		} catch (IOException e) {
			MessageDialog.openError(shell, "Filename error", e.getMessage());
		}
	}
	
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:31,代码来源:NewPipelineHandler.java


示例3: BindingRestoreHelper

import org.eclipse.e4.core.commands.ECommandService; //导入依赖的package包/类
BindingRestoreHelper(final String inContextId,
        final ECommandService inCommandService, final Logger inLog) {
	bindings = new ArrayList<MKeyBinding>();
	contextId = inContextId;
	commandService = inCommandService;
	log = inLog;
}
 
开发者ID:aktion-hip,项目名称:relations,代码行数:8,代码来源:SaveHelper.java


示例4: CommandExecutor

import org.eclipse.e4.core.commands.ECommandService; //导入依赖的package包/类
@Inject
public CommandExecutor(ECommandService commandService, EHandlerService handlerService) {
	this.commandService = commandService;
	this.handlerService = handlerService;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:6,代码来源:CommandExecutor.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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