Exemplo n.º 1
0
 public void visit(CompilationUnit n, Object arg) {
   if (n.getPackage() != null) {
     n.getPackage().accept(this, arg);
   }
   if (n.getImports() != null) {
     for (ImportDeclaration i : n.getImports()) {
       i.accept(this, arg);
     }
   }
   if (n.getTypes() != null) {
     for (Iterator<TypeDeclaration> i = n.getTypes().iterator(); i.hasNext(); ) {
       i.next().accept(this, arg);
       if (i.hasNext()) {}
     }
   }
 }
Exemplo n.º 2
0
 public void visit(ImportDeclaration n, Object arg) {
   if (n.isStatic()) {}
   n.getName().accept(this, arg);
   if (n.isAsterisk()) {}
 }