Home | History | Annotate | Download | only in jdiff

Lines Matching refs:err

151         ErrorHandler err = new ErrorHandler();
167 err.msg("No version identifier specified after -apiname option.");
169 err.msg("Use the -apiname option, or the -oldapi and -newapi options, but not both.");
182 err.msg("No directory specified after -apidir option.");
190 err.msg("No version identifier specified after -oldapi option.");
192 err.msg("Use the -apiname or -oldapi option, but not both.");
204 err.msg("No directory specified after -oldapidir option.");
212 err.msg("No version identifier specified after -newapi option.");
214 err.msg("Use the -apiname or -newapi option, but not both.");
226 err.msg("No directory specified after -newapidir option.");
234 err.msg("Android: No directory specified after -usercommentsdir option.");
242 err.msg("No directory specified after -d option.");
250 err.msg("No location specified after -javadocnew option.");
258 err.msg("No location specified after -javadocold option.");
266 err.msg("No base location specified after -baseURI option.");
274 err.msg("No level (public|protected|package|private) specified after -excludeclass option.");
281 err.msg("Level specified after -excludeclass option must be one of (public|protected|package|private).");
290 err.msg("No level (public|protected|package|private) specified after -excludemember option.");
297 err.msg("Level specified after -excludemember option must be one of (public|protected|package|private).");
323 err.msg("No level (all|remove|add|change) specified after -nosuggest option.");
330 err.msg("Level specified after -nosuggest option must be one of (all|remove|add|change).");
357 err.msg("No exclude tag specified after -excludetag option.");
371 err.msg("No HTML text specified after -doctitle option.");
379 err.msg("No text specified after -windowtitle option.");
395 err.msg("First use the -apiname option to generate an XML file for one API.");
396 err.msg("Then use the -apiname option again to generate another XML file for a different version of the API.");
397 err.msg("Finally use the -oldapi option and -newapi option to generate a report about how the APIs differ.");
399 return err.noErrorsFound;
404 System.err.println("JDiff version: " + JDiff.version);
405 System.err.println("");
406 System.err.println("Valid JDiff arguments:");
407 System.err.println("");
408 System.err.println(" -apiname <Name of a version>");
409 System.err.println(" -oldapi <Name of a version>");
410 System.err.println(" -newapi <Name of a version>");
412 System.err.println(" Optional Arguments");
413 System.err.println();
414 System.err.println(" -d <directory> Destination directory for output HTML files");
415 System.err.println(" -oldapidir <directory> Location of the XML file for the old API");
416 System.err.println(" -newapidir <directory> Location of the XML file for the new API");
417 System.err.println(" -sourcepath <location of Java source files>");
418 System.err.println(" -javadocnew <location of existing Javadoc files for the new API>");
419 System.err.println(" -javadocold <location of existing Javadoc files for the old API>");
420 System.err.println(" -usercommentsdir <directory> Path to dir containing the user_comments* file(s)");
422 System.err.println(" -baseURI <base> Use \"base\" as the base location of the various DTDs and Schemas used by JDiff");
423 System.err.println(" -excludeclass [public|protected|package|private] Exclude classes which are not public, protected etc");
424 System.err.println(" -excludemember [public|protected|package|private] Exclude members which are not public, protected etc");
426 System.err.println(" -firstsentence Save only the first sentence of each comment block with the API.");
427 System.err.println(" -docchanges Report changes in Javadoc comments between the APIs");
428 System.err.println(" -nosuggest [all|remove|add|change] Do not add suggested comments to all, or the removed, added or chabged sections");
429 System.err.println(" -checkcomments Check that comments are sentences");
430 System.err.println(" -stripnonprinting Remove non-printable characters from comments.");
431 System.err.println(" -excludetag <tag> Define the Javadoc tag which implies exclusion");
432 System.err.println(" -stats Generate statistical output");
433 System.err.println(" -help (generates this output)");
434 System.err.println("");
435 System.err.println("For more help, see jdiff.html");