src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocletConstants.java

changeset 1372
78962d89f283
parent 1359
25e14ad23cef
child 1736
74cd21f2c2fe
     1.1 --- a/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocletConstants.java	Wed Oct 17 16:43:26 2012 +0100
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocletConstants.java	Tue Oct 23 13:20:37 2012 -0700
     1.3 @@ -40,6 +40,16 @@
     1.4  public class DocletConstants {
     1.5  
     1.6      /**
     1.7 +     * The default amount of space between tab stops.
     1.8 +     */
     1.9 +    public static final int DEFAULT_TAB_STOP_LENGTH = 8;
    1.10 +
    1.11 +    /**
    1.12 +     * The line separator for the current operating system.
    1.13 +     */
    1.14 +    public static final String NL = System.getProperty("line.separator");
    1.15 +
    1.16 +    /**
    1.17       * The default package name.
    1.18       */
    1.19      public static final String DEFAULT_PACKAGE_NAME = "<Unnamed>";
    1.20 @@ -53,34 +63,4 @@
    1.21       * The anchor for the default package.
    1.22       */
    1.23      public static final String UNNAMED_PACKAGE_ANCHOR = "unnamed_package";
    1.24 -
    1.25 -    /**
    1.26 -     * The name of the doc files directory.
    1.27 -     */
    1.28 -    public static final String DOC_FILES_DIR_NAME = "doc-files";
    1.29 -
    1.30 -    /**
    1.31 -     * The default amount of space between tab stops.
    1.32 -     */
    1.33 -    public static final int DEFAULT_TAB_STOP_LENGTH = 8;
    1.34 -
    1.35 -    /**
    1.36 -     * The name of the directory where we will copy resource files to.
    1.37 -     */
    1.38 -    public static final String RESOURE_DIR_NAME = "resources";
    1.39 -
    1.40 -    /**
    1.41 -     * The source output directory name
    1.42 -     */
    1.43 -    public static final String SOURCE_OUTPUT_DIR_NAME = "src-html/";
    1.44 -
    1.45 -    /**
    1.46 -     * The name of the package list file.
    1.47 -     */
    1.48 -    public static final String PACKAGE_LIST_FILE_NAME = "package-list";
    1.49 -
    1.50 -    /**
    1.51 -     * The line seperator for the current operating system.
    1.52 -     */
    1.53 -    public static final String NL = System.getProperty("line.separator");
    1.54  }

mercurial