Searched defs:docComments (Results 1 - 3 of 3) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DPretty.java80 Map<JCTree, String> docComments = null; field in class:Pretty
231 if (docComments != null) {
232 String dc = docComments.get(tree);
324 docComments = tree.docComments;
479 if (docComments != null && docComments.get(tree) != null) {
H A DJCTree.java424 * @param docComments A hashtable that stores all documentation comments
441 public Map<JCTree, String> docComments = null; field in class:JCTree.JCCompilationUnit
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/parser/
H A DJavacParser.java104 docComments = keepDocComments ? new HashMap<JCTree,String>() : null;
153 /** Switch: should we keep docComments?
361 private final Map<JCTree, String> docComments; field in class:JavacParser
363 /** Make an entry into docComments hashtable,
371 docComments.put(tree, dc);
2290 if (keepDocComments && dc != null && docComments.get(def) == dc) {
2308 toplevel.docComments = docComments;

Completed in 51 milliseconds