You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Config.java 2.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* *******************************************************************
  2. * Copyright (c) 1999-2001 Xerox Corporation,
  3. * 2002 Palo Alto Research Center, Incorporated (PARC).
  4. * All rights reserved.
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Eclipse Public License v1.0
  7. * which accompanies this distribution and is available at
  8. * http://www.eclipse.org/legal/epl-v10.html
  9. *
  10. * Contributors:
  11. * Xerox/PARC initial implementation
  12. * Mik Kersten port to AspectJ 1.1+ code base
  13. * ******************************************************************/
  14. package org.aspectj.tools.ajdoc;
  15. interface Config {
  16. static final String DECL_ID_STRING = "__AJDECLID:";
  17. static final String DECL_ID_TERMINATOR = ":__";
  18. static final String WORKING_DIR = "ajdocworkingdir";
  19. static final String DIR_SEP_CHAR = "/";
  20. static final String USAGE =
  21. "Usage: ajdoc <options> <source files>\n" +
  22. "\n" +
  23. "where <options> includes:\n"+
  24. " -public Show only public classes and members\n"+
  25. " -protected Show protected/public classes and members\n"+
  26. " -package Show package/protected/public classes and members\n" + // default
  27. " -private Show all classes and members\n" +
  28. " -help Display command line options\n" +
  29. " -sourcepath <pathlist> Specify where to find source files\n" +
  30. " -classpath <pathlist> Specify where to find user class files\n" +
  31. " -bootclasspath <pathlist> Override location of class files loaded\n" +
  32. " -d <directory> Destination directory for output files\n" +
  33. " -argfile <file> Build config file (wildcards not supported)\n" +
  34. " -verbose Output messages about what Javadoc is doing\n" +
  35. " -v Print out the version of ajdoc\n" +
  36. " -source <version> set source level (1.3, 1.4 or 1.5)\n" +
  37. "\n" +
  38. "as well as the AspectJ Compiler options.\n" +
  39. "\n"+
  40. "If an argument is of the form @<filename>, the file will be interpreted as\n"+
  41. "a line delimited set of arguments to insert into the argument list.\n";
  42. }