HomeSort by relevance Sort by last modified time
    Searched refs:JDiff (Results 1 - 9 of 9) sorted by null

  /external/jdiff/src/jdiff/
Options.java 1 package jdiff; package
8 * Class to handle options for JDiff.
57 // Options to control JDiff
168 } else if (JDiff.compareAPIs) {
175 JDiff.writeXML = true;
176 JDiff.compareAPIs = false;
191 } else if (JDiff.writeXML) {
196 JDiff.oldFileName = filename + ".xml";
197 JDiff.writeXML = false;
198 JDiff.compareAPIs = true
    [all...]
JDiff.java 1 package jdiff; package
17 public class JDiff extends Doclet {
30 System.out.println("JDiff: doclet started ...");
31 JDiff jd = new JDiff();
39 * @return true if no problems encountered within JDiff
54 if (!tempOldFileName.endsWith(JDiff.DIR_SEP)) {
55 tempOldFileName += JDiff.DIR_SEP;
71 if (!tempNewFileName.endsWith(JDiff.DIR_SEP)) {
72 tempNewFileName += JDiff.DIR_SEP
    [all...]
CommentsHandler.java 1 package jdiff; package
70 int idx1 = JDiff.oldFileName.lastIndexOf('.');
71 int idx2 = JDiff.newFileName.lastIndexOf('.');
72 String filename2 = JDiff.oldFileName.substring(0, idx1) +
73 "_to_" + JDiff.newFileName.substring(0, idx2);
Diff.java 1 package jdiff; package
304 JDiff.DIR_SEP + diffFileName + currPkgName +
315 diffFile.println("<meta name=\"generator\" content=\"JDiff v" + JDiff.version + "\">");
316 diffFile.println("<!-- Generated by the JDiff Javadoc doclet -->");
317 diffFile.println("<!-- (" + JDiff.jDiffLocation + ") -->");
319 diffFile.println("<meta name=\"description\" content=\"" + JDiff.jDiffDescription + "\">");
320 diffFile.println("<meta name=\"keywords\" content=\"" + JDiff.jDiffKeywords + "\">");
321 diffFile.println("<LINK REL=\"stylesheet\" TYPE=\"text/css\" HREF=\"" + "../" + "stylesheet-jdiff.css\" TITLE=\"Style\">");
355 diffFile.println("<TD ALIGN=\"right\" VALIGN=\"top\" ROWSPAN=3><EM><b>Generated by<br><a href=\"" + JDiff.jDiffLocation + "\" class=\"staysblack\" target=\"_top\">JDiff</a></b></EM></TD>")
    [all...]
HTMLFiles.java 1 package jdiff; package
126 String helpFileName = fullReportFileName + JDiff.DIR_SEP + "jdiff_help" + h_.reportFileExt;
131 h_.writeHTMLTitle("JDiff Help");
159 h_.writeText("<TD ALIGN=\"right\" VALIGN=\"top\" ROWSPAN=3><EM><b>Generated by<br><a href=\"" + JDiff.jDiffLocation + "\" class=\"staysblack\" target=\"_top\">JDiff</a></b></EM></TD>");
176 h_.writeText("<H1>JDiff Documentation</H1>");
180 h_.writeText("JDiff is a <a href=\"http://java.sun.com/j2se/javadoc/\" target=\"_top\">Javadoc</a> doclet which generates a report of the API differences between two versions of a product. It does not report changes in Javadoc comments, or changes in what a class or method does. ");
181 h_.writeText("This help page describes the different parts of the output from JDiff.");
185 h_.writeText(" See the reference page in the <a href=\"" + JDiff.jDiffLocation + "\">source for JDiff</a> for information about how to generate a report like this one.")
    [all...]
HTMLReportGenerator.java 1 package jdiff; package
44 fullReportFileName = outputDir + JDiff.DIR_SEP + reportFileName;
45 System.out.println("JDiff: generating HTML report into the file '" + fullReportFileName + reportFileExt + "' and the subdirectory '" + fullReportFileName + "'");
65 String changesSummaryName = fullReportFileName + JDiff.DIR_SEP +
142 String tlf = fullReportFileName + JDiff.DIR_SEP +
146 String allDiffsIndexName = fullReportFileName + JDiff.DIR_SEP +
149 String packagesIndexName = fullReportFileName + JDiff.DIR_SEP +
151 String classesIndexName = fullReportFileName + JDiff.DIR_SEP +
153 String constructorsIndexName = fullReportFileName + JDiff.DIR_SEP +
155 String methodsIndexName = fullReportFileName + JDiff.DIR_SEP +
    [all...]
RootDocToXML.java 1 package jdiff; package
34 if (!tempFileName.endsWith(JDiff.DIR_SEP))
35 tempFileName += JDiff.DIR_SEP;
42 System.out.println("JDiff: writing the API to file '" + tempFileName + "'...");
84 if (!xsdFileName.endsWith(JDiff.DIR_SEP))
85 xsdFileName += JDiff.DIR_SEP;
97 xsdFile.println(" Schema for JDiff API representation.");
388 System.out.println("JDiff: warning: multiple @deprecated tags found in comments for " + ped.name() + ". Using the first one only.");
424 if (JDiff.javaVersion.startsWith("1.1") ||
425 JDiff.javaVersion.startsWith("1.2") ||
    [all...]
Comments.java 1 package jdiff; package
134 xsdFile.println(" Schema for JDiff comments.");
477 outputFile.println(" jdversion=\"" + JDiff.version + "\">");
498 outputFile.println(" to cause jdiff to include the first line of the API documentation. You also need to close p HTML ");
HTMLIndexes.java 1 package jdiff; package
8 * All indexes are links to JDiff-generated pages.
370 String sinceFileName = h_.outputDir + JDiff.DIR_SEP + "missingSinces.txt";
513 // JDiff page for the package
    [all...]

Completed in 36 milliseconds