本文整理了Java中org.eclipse.jdt.core.dom.Annotation.getTypeNameProperty()
方法的一些代码示例,展示了Annotation.getTypeNameProperty()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Annotation.getTypeNameProperty()
方法的具体详情如下:
包路径:org.eclipse.jdt.core.dom.Annotation
类名称:Annotation
方法名:getTypeNameProperty
[英]Returns structural property descriptor for the "typeName" property of this node (child type: Name).
[中]返回此节点的“typeName”属性(子类型:Name)的结构属性描述符。
代码示例来源:origin: org.eclipse.emf/org.eclipse.emf.codegen
/**
* Sets the name of annotation type. If the name starts with @ sign, @ sign is removed.
* @param name name to set
* @see org.eclipse.emf.codegen.merge.java.facade.JNode#setName(java.lang.String)
*/
public void setName(String name)
{
if (name != null)
{
name = name.trim();
if (name.startsWith("@"))
{
this.name = name;
name = name.substring(1);
}
else
{
this.name = "@" + name;
}
}
else
{
this.name = name;
}
setNodeProperty(getASTNode(), name, getASTNode().getTypeNameProperty(), ASTNode.SIMPLE_NAME);
}
代码示例来源:origin: org.eclipse/org.eclipse.emf.codegen
/**
* Sets the name of annotation type. If the name starts with @ sign, @ sign is removed.
* @param name name to set
* @see org.eclipse.emf.codegen.merge.java.facade.JNode#setName(java.lang.String)
*/
public void setName(String name)
{
if (name != null)
{
name = name.trim();
if (name.startsWith("@"))
{
this.name = name;
name = name.substring(1);
}
else
{
this.name = "@" + name;
}
}
else
{
this.name = name;
}
setNodeProperty(getASTNode(), name, getASTNode().getTypeNameProperty(), ASTNode.SIMPLE_NAME);
}
代码示例来源:origin: org.eclipse.jdt/org.eclipse.jdt.ui
private static void addNullityAnnotationTypesProposals(ICompilationUnit cu, Name node, Collection<ICommandAccess> proposals) throws CoreException {
ASTNode parent= node.getParent();
boolean isAnnotationName= parent instanceof Annotation && ((Annotation) parent).getTypeNameProperty() == node.getLocationInParent();
if (!isAnnotationName) {
boolean isImportName= parent instanceof ImportDeclaration && ImportDeclaration.NAME_PROPERTY == node.getLocationInParent();
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jdt.ui
private static void addNullityAnnotationTypesProposals(ICompilationUnit cu, Name node, Collection<ICommandAccess> proposals) throws CoreException {
ASTNode parent= node.getParent();
boolean isAnnotationName= parent instanceof Annotation && ((Annotation) parent).getTypeNameProperty() == node.getLocationInParent();
if (!isAnnotationName) {
boolean isImportName= parent instanceof ImportDeclaration && ImportDeclaration.NAME_PROPERTY == node.getLocationInParent();
内容来源于网络,如有侵权,请联系作者删除!