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


Java AnnotationTypeDeclaration类代码示例

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


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

示例1: evaluateListRewrite

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
private ListRewrite evaluateListRewrite(ASTRewrite rewrite, ASTNode declNode) {
	switch (declNode.getNodeType()) {
		case ASTNode.METHOD_DECLARATION:
			return rewrite.getListRewrite(declNode, MethodDeclaration.MODIFIERS2_PROPERTY);
		case ASTNode.FIELD_DECLARATION:
			return rewrite.getListRewrite(declNode, FieldDeclaration.MODIFIERS2_PROPERTY);
		case ASTNode.VARIABLE_DECLARATION_EXPRESSION:
			return rewrite.getListRewrite(declNode, VariableDeclarationExpression.MODIFIERS2_PROPERTY);
		case ASTNode.VARIABLE_DECLARATION_STATEMENT:
			return rewrite.getListRewrite(declNode, VariableDeclarationStatement.MODIFIERS2_PROPERTY);
		case ASTNode.SINGLE_VARIABLE_DECLARATION:
			return rewrite.getListRewrite(declNode, SingleVariableDeclaration.MODIFIERS2_PROPERTY);
		case ASTNode.TYPE_DECLARATION:
			return rewrite.getListRewrite(declNode, TypeDeclaration.MODIFIERS2_PROPERTY);
		case ASTNode.ENUM_DECLARATION:
			return rewrite.getListRewrite(declNode, EnumDeclaration.MODIFIERS2_PROPERTY);
		case ASTNode.ANNOTATION_TYPE_DECLARATION:
			return rewrite.getListRewrite(declNode, AnnotationTypeDeclaration.MODIFIERS2_PROPERTY);
		case ASTNode.ENUM_CONSTANT_DECLARATION:
			return rewrite.getListRewrite(declNode, EnumConstantDeclaration.MODIFIERS2_PROPERTY);
		case ASTNode.ANNOTATION_TYPE_MEMBER_DECLARATION:
			return rewrite.getListRewrite(declNode, AnnotationTypeMemberDeclaration.MODIFIERS2_PROPERTY);
		default:
			throw new IllegalArgumentException("node has no modifiers: " + declNode.getClass().getName()); //$NON-NLS-1$
	}
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:27,代码来源:ModifierRewrite.java

示例2: visit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public boolean visit(AnnotationTypeDeclaration node) {
	if (node.getJavadoc() != null) {
		node.getJavadoc().accept(this);
	}
	printModifiers(node.modifiers());
	this.fBuffer.append("@interface ");//$NON-NLS-1$
	node.getName().accept(this);
	this.fBuffer.append(" {");//$NON-NLS-1$
	for (Iterator<BodyDeclaration> it= node.bodyDeclarations().iterator(); it.hasNext();) {
		BodyDeclaration d= it.next();
		d.accept(this);
	}
	this.fBuffer.append("}");//$NON-NLS-1$
	return false;
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion-Juno38,代码行数:17,代码来源:ASTFlattener.java

示例3: visit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
public boolean visit(AnnotationTypeDeclaration node) {
	if (node.getJavadoc() != null) {
		node.getJavadoc().accept(this);
	}
	printIndent();
	printModifiers(node.modifiers());
	this.buffer.append("@interface ");//$NON-NLS-1$
	node.getName().accept(this);
	this.buffer.append(" {");//$NON-NLS-1$
	for (Iterator it = node.bodyDeclarations().iterator(); it.hasNext(); ) {
		BodyDeclaration d = (BodyDeclaration) it.next();
		d.accept(this);
	}
	this.buffer.append("}\n");//$NON-NLS-1$
	return false;
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion-Juno38,代码行数:17,代码来源:NaiveASTFlattener.java

示例4: visit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public boolean visit(AnnotationTypeDeclaration node) {
	AbstractAnnotation absAnnotation = new AbstractAnnotation();
	
	if (packageName != null) {
		absAnnotation.setName(packageName+'.'+node.getName().getFullyQualifiedName());
	} else {
		absAnnotation.setName(node.getName().getFullyQualifiedName());
	}

	TypeVisitor visitor = new TypeVisitor();
	node.accept(visitor);
	
	absAnnotation.setMethods(visitor.getMethods());
	absAnnotation.setFields(visitor.getFields());
	absAnnotation.setStartPosition(node.getStartPosition());
	absAnnotation.setEndPosition(node.getStartPosition() + node.getLength() - 1);
	absAnnotation.setMembers(visitor.getAnnotationMembers());
	
	types.add(absAnnotation);
	return true;
}
 
开发者ID:visminer,项目名称:repositoryminer,代码行数:23,代码来源:FileVisitor.java

示例5: visit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public boolean visit(AnnotationTypeDeclaration node) {
	if (++fTypes > 1) {
		return false;
	}
	return super.visit(node);
}
 
开发者ID:eclipse,项目名称:eclipse.jdt.ls,代码行数:8,代码来源:SnippetFinder.java

示例6: endVisit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public void endVisit(AnnotationTypeDeclaration node) {
	if (skipNode(node)) {
		return;
	}
	GenericSequentialFlowInfo info = processSequential(node, node.bodyDeclarations());
	info.setNoReturn();
}
 
开发者ID:eclipse,项目名称:eclipse.jdt.ls,代码行数:9,代码来源:FlowAnalyzer.java

示例7: visit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public boolean visit(AnnotationTypeDeclaration node) {
	// Don't dive into a local type.
	if (node.isLocalTypeDeclaration()) {
		return false;
	}
	return true;
}
 
开发者ID:eclipse,项目名称:eclipse.jdt.ls,代码行数:9,代码来源:AbstractExceptionAnalyzer.java

示例8: getRewrite

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
protected ASTRewrite getRewrite() throws CoreException {
	CompilationUnit astRoot= ASTResolving.findParentCompilationUnit(fInvocationNode);
	ASTNode typeDecl= astRoot.findDeclaringNode(fSenderBinding);
	ASTNode newTypeDecl= null;
	if (typeDecl != null) {
		newTypeDecl= typeDecl;
	} else {
		astRoot= ASTResolving.createQuickFixAST(getCompilationUnit(), null);
		newTypeDecl= astRoot.findDeclaringNode(fSenderBinding.getKey());
	}
	createImportRewrite(astRoot);

	if (newTypeDecl instanceof AnnotationTypeDeclaration) {
		AnnotationTypeDeclaration newAnnotationTypeDecl= (AnnotationTypeDeclaration) newTypeDecl;

		ASTRewrite rewrite= ASTRewrite.create(astRoot.getAST());

		AnnotationTypeMemberDeclaration newStub= getStub(rewrite, newAnnotationTypeDecl);

		List<BodyDeclaration> members= newAnnotationTypeDecl.bodyDeclarations();
		int insertIndex= members.size();

		ListRewrite listRewriter= rewrite.getListRewrite(newAnnotationTypeDecl, AnnotationTypeDeclaration.BODY_DECLARATIONS_PROPERTY);
		listRewriter.insertAt(newStub, insertIndex, null);

		return rewrite;
	}
	return null;
}
 
开发者ID:eclipse,项目名称:eclipse.jdt.ls,代码行数:31,代码来源:NewAnnotationMemberProposal.java

示例9: evaluateModifiers

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
private int evaluateModifiers(AnnotationTypeDeclaration targetTypeDecl) {
	List<BodyDeclaration> methodDecls= targetTypeDecl.bodyDeclarations();
	for (int i= 0; i < methodDecls.size(); i++) {
		Object curr= methodDecls.get(i);
		if (curr instanceof AnnotationTypeMemberDeclaration) {
			return ((AnnotationTypeMemberDeclaration) curr).getModifiers();
		}
	}
	return 0;
}
 
开发者ID:eclipse,项目名称:eclipse.jdt.ls,代码行数:11,代码来源:NewAnnotationMemberProposal.java

示例10: evaluateListRewrite

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
private ListRewrite evaluateListRewrite(ASTRewrite rewrite, ASTNode declNode) {
  switch (declNode.getNodeType()) {
    case ASTNode.METHOD_DECLARATION:
      return rewrite.getListRewrite(declNode, MethodDeclaration.MODIFIERS2_PROPERTY);
    case ASTNode.FIELD_DECLARATION:
      return rewrite.getListRewrite(declNode, FieldDeclaration.MODIFIERS2_PROPERTY);
    case ASTNode.VARIABLE_DECLARATION_EXPRESSION:
      return rewrite.getListRewrite(declNode, VariableDeclarationExpression.MODIFIERS2_PROPERTY);
    case ASTNode.VARIABLE_DECLARATION_STATEMENT:
      return rewrite.getListRewrite(declNode, VariableDeclarationStatement.MODIFIERS2_PROPERTY);
    case ASTNode.SINGLE_VARIABLE_DECLARATION:
      return rewrite.getListRewrite(declNode, SingleVariableDeclaration.MODIFIERS2_PROPERTY);
    case ASTNode.TYPE_DECLARATION:
      return rewrite.getListRewrite(declNode, TypeDeclaration.MODIFIERS2_PROPERTY);
    case ASTNode.ENUM_DECLARATION:
      return rewrite.getListRewrite(declNode, EnumDeclaration.MODIFIERS2_PROPERTY);
    case ASTNode.ANNOTATION_TYPE_DECLARATION:
      return rewrite.getListRewrite(declNode, AnnotationTypeDeclaration.MODIFIERS2_PROPERTY);
    case ASTNode.ENUM_CONSTANT_DECLARATION:
      return rewrite.getListRewrite(declNode, EnumConstantDeclaration.MODIFIERS2_PROPERTY);
    case ASTNode.ANNOTATION_TYPE_MEMBER_DECLARATION:
      return rewrite.getListRewrite(
          declNode, AnnotationTypeMemberDeclaration.MODIFIERS2_PROPERTY);
    default:
      throw new IllegalArgumentException(
          "node has no modifiers: " + declNode.getClass().getName()); // $NON-NLS-1$
  }
}
 
开发者ID:eclipse,项目名称:che,代码行数:29,代码来源:ModifierRewrite.java

示例11: getRewrite

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
protected ASTRewrite getRewrite() throws CoreException {
  CompilationUnit astRoot = ASTResolving.findParentCompilationUnit(fInvocationNode);
  ASTNode typeDecl = astRoot.findDeclaringNode(fSenderBinding);
  ASTNode newTypeDecl = null;
  if (typeDecl != null) {
    newTypeDecl = typeDecl;
  } else {
    astRoot = ASTResolving.createQuickFixAST(getCompilationUnit(), null);
    newTypeDecl = astRoot.findDeclaringNode(fSenderBinding.getKey());
  }
  createImportRewrite(astRoot);

  if (newTypeDecl instanceof AnnotationTypeDeclaration) {
    AnnotationTypeDeclaration newAnnotationTypeDecl = (AnnotationTypeDeclaration) newTypeDecl;

    ASTRewrite rewrite = ASTRewrite.create(astRoot.getAST());

    AnnotationTypeMemberDeclaration newStub = getStub(rewrite, newAnnotationTypeDecl);

    List<BodyDeclaration> members = newAnnotationTypeDecl.bodyDeclarations();
    int insertIndex = members.size();

    ListRewrite listRewriter =
        rewrite.getListRewrite(
            newAnnotationTypeDecl, AnnotationTypeDeclaration.BODY_DECLARATIONS_PROPERTY);
    listRewriter.insertAt(newStub, insertIndex, null);

    return rewrite;
  }
  return null;
}
 
开发者ID:eclipse,项目名称:che,代码行数:33,代码来源:NewAnnotationMemberProposal.java

示例12: evaluateModifiers

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
private int evaluateModifiers(AnnotationTypeDeclaration targetTypeDecl) {
  List<BodyDeclaration> methodDecls = targetTypeDecl.bodyDeclarations();
  for (int i = 0; i < methodDecls.size(); i++) {
    Object curr = methodDecls.get(i);
    if (curr instanceof AnnotationTypeMemberDeclaration) {
      return ((AnnotationTypeMemberDeclaration) curr).getModifiers();
    }
  }
  return 0;
}
 
开发者ID:eclipse,项目名称:che,代码行数:11,代码来源:NewAnnotationMemberProposal.java

示例13: visit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public boolean visit(AnnotationTypeDeclaration node) {
	ITypeBinding binding = node.resolveBinding();
	if (binding == null) {
		logNullBinding("annotation type declaration", node.getName(), ((CompilationUnit) node.getRoot()).getLineNumber(node.getStartPosition()));
		return false;
	}
	Type type = importer.ensureTypeFromTypeBinding(binding);
	type.setIsStub(false);
	importer.createSourceAnchor(type, node, (CompilationUnit) node.getRoot());
	importer.pushOnContainerStack(type);
	importer.ensureCommentFromBodyDeclaration(type, node);
	return true;
}
 
开发者ID:feenkcom,项目名称:jdt2famix,代码行数:15,代码来源:AstVisitor.java

示例14: endVisit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public void endVisit(AnnotationTypeDeclaration node) {
	if (skipNode(node))
		return;
	GenericSequentialFlowInfo info= processSequential(node, node.bodyDeclarations());
	info.setNoReturn();
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:8,代码来源:FlowAnalyzer.java

示例15: visit

import org.eclipse.jdt.core.dom.AnnotationTypeDeclaration; //导入依赖的package包/类
@Override
public boolean visit(AnnotationTypeDeclaration node) {
	// Don't dive into a local type.
	if (node.isLocalTypeDeclaration())
		return false;
	return true;
}
 
开发者ID:trylimits,项目名称:Eclipse-Postfix-Code-Completion,代码行数:8,代码来源:AbstractExceptionAnalyzer.java


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