src/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java

changeset 1136
ae361e7f435a
parent 1127
ca49d50318dc
child 1157
3809292620c9
equal deleted inserted replaced
1135:36553cb94345 1136:ae361e7f435a
686 boolean processingResult = callProcessor(ps.processor, typeElements, renv); 686 boolean processingResult = callProcessor(ps.processor, typeElements, renv);
687 ps.contributed = true; 687 ps.contributed = true;
688 ps.removeSupportedOptions(unmatchedProcessorOptions); 688 ps.removeSupportedOptions(unmatchedProcessorOptions);
689 689
690 if (printProcessorInfo || verbose) { 690 if (printProcessorInfo || verbose) {
691 log.printNoteLines("x.print.processor.info", 691 log.printLines("x.print.processor.info",
692 ps.processor.getClass().getName(), 692 ps.processor.getClass().getName(),
693 matchedNames.toString(), 693 matchedNames.toString(),
694 processingResult); 694 processingResult);
695 } 695 }
696 696
1012 /** Print info about this round. */ 1012 /** Print info about this round. */
1013 private void printRoundInfo(boolean lastRound) { 1013 private void printRoundInfo(boolean lastRound) {
1014 if (printRounds || verbose) { 1014 if (printRounds || verbose) {
1015 List<ClassSymbol> tlc = lastRound ? List.<ClassSymbol>nil() : topLevelClasses; 1015 List<ClassSymbol> tlc = lastRound ? List.<ClassSymbol>nil() : topLevelClasses;
1016 Set<TypeElement> ap = lastRound ? Collections.<TypeElement>emptySet() : annotationsPresent; 1016 Set<TypeElement> ap = lastRound ? Collections.<TypeElement>emptySet() : annotationsPresent;
1017 log.printNoteLines("x.print.rounds", 1017 log.printLines("x.print.rounds",
1018 number, 1018 number,
1019 "{" + tlc.toString(", ") + "}", 1019 "{" + tlc.toString(", ") + "}",
1020 ap, 1020 ap,
1021 lastRound); 1021 lastRound);
1022 } 1022 }

mercurial