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

Java CanExecute类代码示例

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

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



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

示例1: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(ESelectionService selectionService,
		@Optional @Named(PARAM_RESOURCE_TYPE) String resourceType) {
	Object s = selectionService.getSelection();
	if (resourceType == null) {
		return s != null && (s instanceof ECorpus || s instanceof EPipeline || s instanceof ETerminology);
	} else {
		if (resourceType.equals(EPipeline.class.getName()))
			return s != null && s instanceof EPipeline;
		else if (resourceType.equals(ECorpus.class.getName()))
			return s != null && s instanceof ECorpus;
		else if (resourceType.equals(ETerminology.class.getName()))
			return s != null && s instanceof ETerminology;
	}
	return false;
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:17,代码来源:RemoveResourceHandler.java


示例2: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(
		@Optional ParameterizedCommand command, 
		@Optional @Named(IServiceConstants.ACTIVE_SELECTION) EPipeline selectedPipeline,
		ResourceService resourceService,
		NLPService extractorService) {
	if(command == null || command.getParameterMap().isEmpty()) {
		// try to run handler from selected EPipeline
		if(selectedPipeline != null)
			return extractorService.isPipelineValid(selectedPipeline);
		else 
			return false;
	} else {
		// try to run handler from parameterized command
		Map<String, Object> parameterMap = command.getParameterMap();
		Object pipelineName = parameterMap.get(TermSuiteUI.COMMAND_RUN_PIPELINE_PARAMETER_PIPELINE_ID);
		return pipelineName != null
					&& resourceService.getPipeline(pipelineName.toString()).isPresent()
					&& extractorService.isPipelineValid(resourceService.getPipeline(pipelineName.toString()).get())
					;
	}
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:23,代码来源:RunPipelineHandler.java


示例3: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Active MPart activePart) {
	
	// have active part injected via param
	
	// true if active part has a StructuredViewer
	Object o = activePart.getObject();
	StructuredViewerProvider part;
	// see if part has a StructuredViewer
	if (o instanceof StructuredViewerProvider)
	{
		return true;
	}
	
	return false;
	
}
 
开发者ID:cplutte,项目名称:bts,代码行数:18,代码来源:OpenObjectByListEntrySelectionFilterDialogHandler.java


示例4: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Active MPart activePart) {
	
	// have active part injected via param
	
	// true if active part has a StructuredViewer
	Object o = activePart.getObject();
	// see if part has a StructuredViewer
	if (o instanceof StructuredViewerProvider)
	{
		return true;
	}
	
	return false;
	
}
 
开发者ID:cplutte,项目名称:bts,代码行数:17,代码来源:OpenTypeSubtypeFilterDialogHandler.java


示例5: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Active MPart activePart) {
	
	// have active part injected via param
	
	// true if active part has a StructuredViewer
	Object o = activePart.getObject();
	CorpusNavigatorPart part;
	// see if part has a StructuredViewer
	if (o instanceof CorpusNavigatorPart)
	{
		return true;
	}
	
	return false;
	
}
 
开发者ID:cplutte,项目名称:bts,代码行数:18,代码来源:FilterOnlyInvalidTextsHandler.java


示例6: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Active MPart activePart) {
	
	// have active part injected via param
	
	// true if active part has a StructuredViewer
	Object o = activePart.getObject();
	LemmaNavigator part;
	// see if part has a StructuredViewer
	if (o instanceof LemmaNavigator)
	{
		return true;
	}
	
	return false;
	
}
 
开发者ID:cplutte,项目名称:bts,代码行数:18,代码来源:FilterOnlyInvalidLemmataHandler.java


示例7: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Optional ResourceProvider rp){
	
	if(rp == null){
		return false;
	}
	
	String id = rp.getID();
	if(CSToolResource.ANALYSER_INPUT.getID().equals(id)){
		return true;
	}
	if(CSToolResource.ANALYSER_CONF.getID().equals(id)){
		return true;
	}
	
	return false;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:18,代码来源:CreateAlternativeHandler.java


示例8: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Optional ResourceProvider rp){
	
	if(rp == null){
		return false;
	}
	
	String id = rp.getID();
	if(CSToolResource.EXTRACTOR_INPUT.getID().equals(id)){
		return true;
	}
	if(CSToolResource.EXTRACTOR_CONF.getID().equals(id)){
		return true;
	}
	
	return false;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:18,代码来源:CreateAlternativeHandler.java


示例9: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Optional IResource resource){
	
	if(resource instanceof IProject){
		IProject project = (IProject)resource;
		try {
			if(project.hasNature("org.eclipse.jdt.core.javanature")){
				return true;
			}
		} catch (CoreException e) {
			e.printStackTrace();
		}
	}
	
	return false;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:17,代码来源:ShowJavaProjectHandler.java


示例10: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Optional ResourceProvider rp){
	
	if(rp == null){
		return false;
	}
	
	String id = rp.getID();
	if(CSToolResource.SPOTTER_STA_INPUT.getID().equals(id)){
		return true;
	}
	if(CSToolResource.SPOTTER_STA_CONF.getID().equals(id)){
		return true;
	}
	
	return false;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:18,代码来源:CreateAlternativeHandler.java


示例11: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(ESelectionService selectionService){
	
	Object selection = selectionService.getSelection();
	
	if(selection instanceof Object[]){
		for(Object o : (Object[])selection){
			if(!canDelete(o)){
				return false;
			}
		}
	}
	else if(!canDelete(selection)){
		return false;
	}
	
	return true;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:19,代码来源:DeleteExplorerNodeHandler.java


示例12: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Optional ResourceProvider rp){
	
	if(rp == null){
		return false;
	}
	
	String id = rp.getID();
	if(CSToolResource.SPOTTER_DYN_INPUT.getID().equals(id)){
		return true;
	}
	if(CSToolResource.SPOTTER_DYN_CONF.getID().equals(id)){
		return true;
	}
	
	return false;
}
 
开发者ID:CloudScale-Project,项目名称:Environment,代码行数:18,代码来源:CreateAlternativeHandler.java


示例13: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(
		@Optional @Named(IServiceConstants.ACTIVE_SELECTION) ISelection selection) {
	if (selection instanceof IStructuredSelection) {
		IStructuredSelection structured = (IStructuredSelection) selection;
		Object object = structured.getFirstElement();
		if (object instanceof IResource) {
			IResource resource = (IResource) object;
			if (extension.equals(resource.getFileExtension())) {
				selectedResource = resource;
				return true;
			}
		}
	}
	selectedResource = null;
	return false;
}
 
开发者ID:LangleyStudios,项目名称:eclipse-avro,代码行数:18,代码来源:GenerateAvroHandler.java


示例14: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(
		@Optional @Named(IServiceConstants.ACTIVE_SELECTION) ISelection selection) {
	if (selection instanceof IStructuredSelection) {
		IStructuredSelection structured = (IStructuredSelection) selection;
		Object object = structured.getFirstElement();
		if (object instanceof IResource) {
			IResource resource = (IResource) object;
			if (GENMODEL_EXTENSION.equals(resource.getFileExtension())) {
				selectedResource = resource;
				return true;
			}
		}
	}
	selectedResource = null;
	return false;
}
 
开发者ID:LangleyStudios,项目名称:eclipse-avro,代码行数:18,代码来源:GenerateFromGenModelHandler.java


示例15: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(MPart part) {
	if(part != null && part.getObject() instanceof TreePart) {
		TreePath[] expandedTreePaths = ((TreePart) part.getObject()).getTreeViewer().getExpandedTreePaths();
		return expandedTreePaths.length > 0;			
	} else
		return false;
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:9,代码来源:CollapseAllHandler.java


示例16: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(
		ResourceService resourceService,
		@Optional @Named(IServiceConstants.ACTIVE_SELECTION) EObject selectedObject) {
	return selectedObject != null && (
			resourceService.isRenameable(selectedObject.getClass()));
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:8,代码来源:RenameHandler.java


示例17: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Named(IServiceConstants.ACTIVE_PART)
                      	@Optional MPart part) {
   if (part!=null && part.isDirty()) 
	   return true;
   return false;
}
 
开发者ID:termsuite,项目名称:termsuite-ui,代码行数:8,代码来源:SaveHandler.java


示例18: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(EPartService partService) {
	if (partService != null) {
		return !partService.getDirtyParts().isEmpty();
	}
	return false;
}
 
开发者ID:DrBookings,项目名称:drbookings,代码行数:8,代码来源:SaveHandler.java


示例19: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(@Optional @Named(IServiceConstants.ACTIVE_SELECTION) Object selection,
		@Optional @Named(BTSCoreConstants.CORE_EXPRESSION_MAY_EDIT) Boolean mayEdit) {
	if (mayEdit != null && mayEdit.booleanValue() && selection instanceof AdministrativDataObject)
	{
		if (!((AdministrativDataObject)selection).getRevisions().isEmpty())
		{
			return true;
		}
	}
	return false;
}
 
开发者ID:cplutte,项目名称:bts,代码行数:13,代码来源:OpenCompareDialogHandler.java


示例20: canExecute

import org.eclipse.e4.core.di.annotations.CanExecute; //导入依赖的package包/类
@CanExecute
public boolean canExecute(
		@Optional @Named(BTSCoreConstants.CORE_EXPRESSION_CAN_REDO) String canRedo,
		@Optional @Named(BTSCoreConstants.CORE_EXPRESSION_MAY_EDIT) Boolean mayEdit) {
	boolean can = (canRedo != null && canRedo.equals("true") && mayEdit != null && mayEdit.booleanValue());
	return can;
}
 
开发者ID:cplutte,项目名称:bts,代码行数:8,代码来源:RedoHandler.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

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

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

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

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

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