com.sun.tools.doclets.internal.toolkit.util
Class DocletConstants

java.lang.Object
  extended by com.sun.tools.doclets.internal.toolkit.util.DocletConstants

public class DocletConstants
extends java.lang.Object

Stores all constants for a Doclet. Extend this class if you have doclet specific constants to add. This code is not part of an API. It is implementation that is subject to change. Do not use it as an API

Since:
1.5

Field Summary
static java.lang.String DEFAULT_PACKAGE_FILE_NAME
          The default package file name.
static java.lang.String DEFAULT_PACKAGE_NAME
          The default package name.
static int DEFAULT_TAB_STOP_LENGTH
          The default amount of space between tab stops.
static java.lang.String DOC_FILES_DIR_NAME
          The name of the doc files directory.
static java.lang.String NL
          The line seperator for the current operating system.
static java.lang.String PACKAGE_LIST_FILE_NAME
          The name of the package list file.
static java.lang.String RESOURE_DIR_NAME
          The name of the directory where we will copy resource files to.
static java.lang.String SOURCE_OUTPUT_DIR_NAME
          The source output directory name
static java.lang.String UNNAMED_PACKAGE_ANCHOR
          The anchor for the default package.
 
Constructor Summary
DocletConstants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

DEFAULT_PACKAGE_NAME

public static final java.lang.String DEFAULT_PACKAGE_NAME
The default package name.

See Also:
Constant Field Values

DEFAULT_PACKAGE_FILE_NAME

public static final java.lang.String DEFAULT_PACKAGE_FILE_NAME
The default package file name.

See Also:
Constant Field Values

UNNAMED_PACKAGE_ANCHOR

public static final java.lang.String UNNAMED_PACKAGE_ANCHOR
The anchor for the default package.

See Also:
Constant Field Values

DOC_FILES_DIR_NAME

public static final java.lang.String DOC_FILES_DIR_NAME
The name of the doc files directory.

See Also:
Constant Field Values

DEFAULT_TAB_STOP_LENGTH

public static final int DEFAULT_TAB_STOP_LENGTH
The default amount of space between tab stops.

See Also:
Constant Field Values

RESOURE_DIR_NAME

public static final java.lang.String RESOURE_DIR_NAME
The name of the directory where we will copy resource files to.

See Also:
Constant Field Values

SOURCE_OUTPUT_DIR_NAME

public static final java.lang.String SOURCE_OUTPUT_DIR_NAME
The source output directory name

See Also:
Constant Field Values

PACKAGE_LIST_FILE_NAME

public static final java.lang.String PACKAGE_LIST_FILE_NAME
The name of the package list file.

See Also:
Constant Field Values

NL

public static final java.lang.String NL
The line seperator for the current operating system.

Constructor Detail

DocletConstants

public DocletConstants()