本文整理汇总了Java中org.eclipse.jdt.core.dom.Annotation.accept方法的典型用法代码示例。如果您正苦于以下问题:Java Annotation.accept方法的具体用法?Java Annotation.accept怎么用?Java Annotation.accept使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jdt.core.dom.Annotation
的用法示例。
在下文中一共展示了Annotation.accept方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: visit
import org.eclipse.jdt.core.dom.Annotation; //导入方法依赖的package包/类
@Override
public boolean visit(PackageDeclaration node) {
if (node.getAST().apiLevel() >= JLS3) {
if (node.getJavadoc() != null) {
node.getJavadoc().accept(this);
}
for (Iterator<Annotation> it= node.annotations().iterator(); it.hasNext();) {
Annotation p= it.next();
p.accept(this);
this.fBuffer.append(" ");//$NON-NLS-1$
}
}
this.fBuffer.append("package ");//$NON-NLS-1$
node.getName().accept(this);
this.fBuffer.append(";");//$NON-NLS-1$
return false;
}
示例2: visit
import org.eclipse.jdt.core.dom.Annotation; //导入方法依赖的package包/类
public boolean visit(PackageDeclaration node) {
if (node.getAST().apiLevel() >= JLS3) {
if (node.getJavadoc() != null) {
node.getJavadoc().accept(this);
}
for (Iterator it = node.annotations().iterator(); it.hasNext(); ) {
Annotation p = (Annotation) it.next();
p.accept(this);
this.buffer.append(" ");//$NON-NLS-1$
}
}
printIndent();
this.buffer.append("package ");//$NON-NLS-1$
node.getName().accept(this);
this.buffer.append(";\n");//$NON-NLS-1$
return false;
}