当前位置: 首页>>代码示例>>Java>>正文


Java NameValue类代码示例

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


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

示例1: createDomTarget

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Override
@Nullable
protected DomTarget createDomTarget(DomElement parent, DomElement nameElement) {
  final NameValue nameValue = nameElement.getAnnotation(NameValue.class);
  if (nameValue != null && nameValue.referencable()) {
    return DomTarget.getTarget(parent);
  }
  return null;
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:10,代码来源:DomDeclarationSearcher.java

示例2: createDomTarget

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Nullable
protected DomTarget createDomTarget(DomElement parent, DomElement nameElement) {
  final NameValue nameValue = nameElement.getAnnotation(NameValue.class);
  if (nameValue != null && nameValue.referencable()) {
    return DomTarget.getTarget(parent);
  }
  return null;
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:9,代码来源:DomDeclarationSearcher.java

示例3: getName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Attribute("name")
@NameValue
public abstract GenericAttributeValue<String> getName();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:AntDomAntCallParam.java

示例4: getPropertyName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Attribute("property")
@NameValue
public abstract GenericAttributeValue<String> getPropertyName();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:AntDomPropertyDefiningTask.java

示例5: getOutputPropertyName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Attribute("outputproperty")
@NameValue
public abstract GenericAttributeValue<String> getOutputPropertyName();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:AntDomExecTask.java

示例6: getErrorPropertyName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Attribute("errorproperty")
@NameValue
public abstract GenericAttributeValue<String> getErrorPropertyName();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:AntDomExecTask.java

示例7: getResultPropertyName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Attribute("resultproperty")
@NameValue
public abstract GenericAttributeValue<String> getResultPropertyName();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:AntDomExecTask.java

示例8: getAddPropertyName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@Attribute("addproperty")
@NameValue
public abstract GenericAttributeValue<String> getAddPropertyName();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:AntDomInputTask.java

示例9: getValue

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@NotNull
@Stubbed
@NameValue
GenericAttributeValue<String> getValue();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:5,代码来源:PluginModule.java

示例10: getId

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@NameValue
@Required(value = false)
GenericAttributeValue<String> getId();
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:4,代码来源:Extension.java

示例11: getFilterName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@NotNull
@NameValue
MutableGenericValue<String> getFilterName();
 
开发者ID:consulo,项目名称:consulo-javaee,代码行数:4,代码来源:CommonFilter.java

示例12: getServletName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@NameValue
MutableGenericValue<String> getServletName();
 
开发者ID:consulo,项目名称:consulo-javaee,代码行数:3,代码来源:CommonServlet.java

示例13: getEjbRefName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@NameValue
GenericDomValue<String> getEjbRefName();
 
开发者ID:consulo,项目名称:consulo-javaee,代码行数:3,代码来源:EjbReference.java

示例14: getName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@NameValue
GenericValue<String> getName();
 
开发者ID:consulo,项目名称:consulo-javaee,代码行数:3,代码来源:ServiceRef.java

示例15: getEjbName

import com.intellij.util.xml.NameValue; //导入依赖的package包/类
@PrimaryKey
@NameValue
GenericValue<String> getEjbName();
 
开发者ID:consulo,项目名称:consulo-javaee,代码行数:4,代码来源:EnterpriseBean.java


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