langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocletConstants.java
changeset 14357 faf9cde2817b
parent 14260 727a84636f12
child 17559 87c28ee29329
--- a/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocletConstants.java	Wed Oct 17 16:43:26 2012 +0100
+++ b/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/DocletConstants.java	Tue Oct 23 13:20:37 2012 -0700
@@ -40,6 +40,16 @@
 public class DocletConstants {
 
     /**
+     * The default amount of space between tab stops.
+     */
+    public static final int DEFAULT_TAB_STOP_LENGTH = 8;
+
+    /**
+     * The line separator for the current operating system.
+     */
+    public static final String NL = System.getProperty("line.separator");
+
+    /**
      * The default package name.
      */
     public static final String DEFAULT_PACKAGE_NAME = "<Unnamed>";
@@ -53,34 +63,4 @@
      * The anchor for the default package.
      */
     public static final String UNNAMED_PACKAGE_ANCHOR = "unnamed_package";
-
-    /**
-     * The name of the doc files directory.
-     */
-    public static final String DOC_FILES_DIR_NAME = "doc-files";
-
-    /**
-     * The default amount of space between tab stops.
-     */
-    public static final int DEFAULT_TAB_STOP_LENGTH = 8;
-
-    /**
-     * The name of the directory where we will copy resource files to.
-     */
-    public static final String RESOURE_DIR_NAME = "resources";
-
-    /**
-     * The source output directory name
-     */
-    public static final String SOURCE_OUTPUT_DIR_NAME = "src-html/";
-
-    /**
-     * The name of the package list file.
-     */
-    public static final String PACKAGE_LIST_FILE_NAME = "package-list";
-
-    /**
-     * The line seperator for the current operating system.
-     */
-    public static final String NL = System.getProperty("line.separator");
 }