langtools/test/tools/javac/lib/DPrinter.java
changeset 34567 c74f68484156
parent 34479 2a1f2bb7cc13
child 36526 3b41f1c69604
equal deleted inserted replaced
34566:071e47e4ae75 34567:c74f68484156
  1045         }
  1045         }
  1046 
  1046 
  1047         public Void visitIdentifier(IdentifierTree node, Void p) {
  1047         public Void visitIdentifier(IdentifierTree node, Void p) {
  1048             printName("name", node.getName());
  1048             printName("name", node.getName());
  1049             return visitTree(node, null);
  1049             return visitTree(node, null);
       
  1050         }
       
  1051 
       
  1052         public Void visitIndex(IndexTree node, Void p) {
       
  1053             printString("kind", node.getKind().name());
       
  1054             printDocTree("term", node.getSearchTerm());
       
  1055             printList("desc", node.getDescription());
       
  1056             return visitInlineTag(node, p);
  1050         }
  1057         }
  1051 
  1058 
  1052         public Void visitInheritDoc(InheritDocTree node, Void p) {
  1059         public Void visitInheritDoc(InheritDocTree node, Void p) {
  1053             return visitInlineTag(node, null);
  1060             return visitInlineTag(node, null);
  1054         }
  1061         }