Home | History | Annotate | Download | only in jdiff

Lines Matching refs:Comments

85             // Read the file in, but do not add any text to the global comments
91 // Read the file in, and do add any text to the global comments
99 // Read the file where the XML for comments about the changes between
100 // the old API and new API is stored and create a Comments object for
101 // it. The Comments object may be null if no file exists.
112 System.out.println("JDiff: reading the comments in from file '" + commentsFileName + "'...");
113 Comments existingComments = Comments.readFile(commentsFileName);
115 System.out.println(" (the comments file will be created)");
121 // Emit messages about which comments are now unused and
123 Comments newComments = reporter.getNewComments();
124 Comments.noteDifferences(existingComments, newComments);
126 // Write the new comments out to the same file, with unused comments
128 System.out.println("JDiff: writing the comments out to file '" + commentsFileName + "'...");
129 Comments.writeFile(commentsFileName, newComments);