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

Java EHandlerService类代码示例

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

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



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

示例1: createContents

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的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: ContributionItemsFactory

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
ContributionItemsFactory(final MApplication inApplication,
        final EModelService inModelService,
        final EBindingService inBindingService) {
	items = new ArrayList<StyleContributionItem>();

	final IEclipseContext lContext = inApplication.getContext();
	final CommandManager lCommandManager = lContext
	        .get(CommandManager.class);
	final ISWTResourceUtilities lResourceUtility = (ISWTResourceUtilities) lContext
	        .get(IResourceUtilities.class.getName());
	final EHandlerService lHandlerService = lContext
	        .get(EHandlerService.class);

	final MToolBar lToolbar = (MToolBar) inModelService
	        .find(MUI_ID_STYLING_TOOLBAR, inApplication);
	for (final MToolBarElement lElement : lToolbar.getChildren()) {
		if (lElement instanceof MHandledToolItem) {
			final StyleContributionItem lItem = new StyleContributionItem(
			        (MHandledToolItem) lElement, lResourceUtility,
			        inBindingService, lCommandManager, lHandlerService);
			ContextInjectionFactory.inject(lItem, lContext);
			items.add(lItem);
		}
	}
}
 
开发者ID:aktion-hip,项目名称:relations,代码行数:26,代码来源:AbstractEditForm.java


示例3: CommandProvider

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
public CommandProvider(IEvaluationContext evaluationContext) {
	this.evaluationContext = evaluationContext;
	IEclipseContext context = ((ExpressionContext) evaluationContext).eclipseContext;
	ehandlerService = context.get(EHandlerService.class);
	handlerService  = context.get(IHandlerService.class);
	commandService  = context.get(ICommandService.class);
	commandById = new HashMap<>();
}
 
开发者ID:dakaraphi,项目名称:eclipse-plugin-commander,代码行数:9,代码来源:CommandProvider.java


示例4: execute

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的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


示例5: getService

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
/**
 * Gets the service.
 *
 * @return the service
 */
public static EHandlerService getService() {
	if (service == null)
	{
		service = context.get(EHandlerService.class);
	}
	return service;
}
 
开发者ID:cplutte,项目名称:bts,代码行数:13,代码来源:StaticAccessController.java


示例6: StyleContributionItem

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
protected StyleContributionItem(final MHandledToolItem inElement,
        final ISWTResourceUtilities inUtility,
        final EBindingService inBindingService,
        final CommandManager inCommandManager,
        final EHandlerService inHandlerService) {
	super(inElement.getElementId());
	handlerService = inHandlerService;
	icon = inUtility.imageDescriptorFromURI(
	        URI.createURI(inElement.getIconURI()));
	tooltip = inElement.getLocalizedTooltip();
	command = createCommand(inElement.getCommand(), inCommandManager);
	sequence = inBindingService.getBestSequenceFor(command);
	style = Styles.getStyle(inElement.getCommand().getElementId());
}
 
开发者ID:aktion-hip,项目名称:relations,代码行数:15,代码来源:AbstractEditForm.java


示例7: getEHandlerService

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
public EHandlerService getEHandlerService() {
	return eHandlerService;
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:4,代码来源:Services.java


示例8: getEHandlerService

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
protected EHandlerService getEHandlerService() {
	return Services.getInstance().getEHandlerService();
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:4,代码来源:ProgressAnimationItem.java


示例9: CommandExecutor

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


示例10: STKeyListener

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
STKeyListener(final MApplication inApplication) {
	handlerService = inApplication.getContext()
	        .get(EHandlerService.class);
}
 
开发者ID:aktion-hip,项目名称:relations,代码行数:5,代码来源:AbstractEditForm.java


示例11: setService

import org.eclipse.e4.core.commands.EHandlerService; //导入依赖的package包/类
/**
 * Sets the service.
 *
 * @param service the new service
 */
public void setService(EHandlerService service) {
	this.service = service;
}
 
开发者ID:cplutte,项目名称:bts,代码行数:9,代码来源:StaticAccessController.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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