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

changeset 1372
78962d89f283
parent 1359
25e14ad23cef
child 1736
74cd21f2c2fe
equal deleted inserted replaced
1366:12cf6bfd8c05 1372:78962d89f283
38 * @since 1.5 38 * @since 1.5
39 */ 39 */
40 public class DocletConstants { 40 public class DocletConstants {
41 41
42 /** 42 /**
43 * The default amount of space between tab stops.
44 */
45 public static final int DEFAULT_TAB_STOP_LENGTH = 8;
46
47 /**
48 * The line separator for the current operating system.
49 */
50 public static final String NL = System.getProperty("line.separator");
51
52 /**
43 * The default package name. 53 * The default package name.
44 */ 54 */
45 public static final String DEFAULT_PACKAGE_NAME = "<Unnamed>"; 55 public static final String DEFAULT_PACKAGE_NAME = "<Unnamed>";
46 56
47 /** 57 /**
51 61
52 /** 62 /**
53 * The anchor for the default package. 63 * The anchor for the default package.
54 */ 64 */
55 public static final String UNNAMED_PACKAGE_ANCHOR = "unnamed_package"; 65 public static final String UNNAMED_PACKAGE_ANCHOR = "unnamed_package";
56
57 /**
58 * The name of the doc files directory.
59 */
60 public static final String DOC_FILES_DIR_NAME = "doc-files";
61
62 /**
63 * The default amount of space between tab stops.
64 */
65 public static final int DEFAULT_TAB_STOP_LENGTH = 8;
66
67 /**
68 * The name of the directory where we will copy resource files to.
69 */
70 public static final String RESOURE_DIR_NAME = "resources";
71
72 /**
73 * The source output directory name
74 */
75 public static final String SOURCE_OUTPUT_DIR_NAME = "src-html/";
76
77 /**
78 * The name of the package list file.
79 */
80 public static final String PACKAGE_LIST_FILE_NAME = "package-list";
81
82 /**
83 * The line seperator for the current operating system.
84 */
85 public static final String NL = System.getProperty("line.separator");
86 } 66 }

mercurial