All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aspectj.tools.ajdoc.Config Maven / Gradle / Ivy

/* *******************************************************************
 * Copyright (c) 1999-2001 Xerox Corporation, 
 *               2002 Palo Alto Research Center, Incorporated (PARC).
 * All rights reserved. 
 * This program and the accompanying materials are made available 
 * under the terms of the Eclipse Public License v1.0 
 * which accompanies this distribution and is available at 
 * http://www.eclipse.org/legal/epl-v10.html 
 *  
 * Contributors: 
 *     Xerox/PARC     initial implementation 
 *     Mik Kersten	  port to AspectJ 1.1+ code base
 * ******************************************************************/

package org.aspectj.tools.ajdoc;

interface Config {
	
    static final String DECL_ID_STRING     = "__AJDECLID:";
    static final String DECL_ID_TERMINATOR = ":__";
    static final String WORKING_DIR        = "ajdocworkingdir";
    static final String DIR_SEP_CHAR       = "/";
    static final String USAGE =
                               "Usage: ajdoc  \n" +
                               "\n" +
                               "where  includes:\n"+
                               "  -public                   Show only public classes and members\n"+
                               "  -protected                Show protected/public classes and members\n"+
                               "  -package                  Show package/protected/public classes and members\n" +  // default
                               "  -private                  Show all classes and members\n" +
                               "  -help                     Display command line options\n" +
                               "  -sourcepath     Specify where to find source files\n" +
                               "  -classpath      Specify where to find user class files\n" +
                               "  -bootclasspath  Override location of class files loaded\n" +
                               "  -d             Destination directory for output files\n" +
                               "  -windowtitle        Browser window title for the documenation" +
                               "  -bottom        Include bottom text for each page" +
                               "  -link                Create links to javadoc output at " +
                               "  -argfile            Build config file (wildcards not supported)\n" +
                               "  -verbose                  Output messages about what Javadoc is doing\n" +
                               "  -v                        Print out the version of ajdoc\n" +
							   "  -source          set source level (1.3, 1.4 or 1.5)\n" +
							   "\n" +
                               "as well as the AspectJ Compiler options.\n" +
                               "\n"+
                               "If an argument is of the form @, the file will be interpreted as\n"+
                               "a line delimited set of arguments to insert into the argument list.\n";

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy