本文整理汇总了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;未经允许,请勿转载。 |
请发表评论