47 * The line separator for the current operating system. 48 */ 49 public static final String NL = System.getProperty("line.separator"); 50 51 /** 52 * The default package name. 53 */ 54 public static final String DEFAULT_PACKAGE_NAME = "<Unnamed>"; 55 56 /** 57 * The default module or a package name. 58 */ 59 public static final String DEFAULT_ELEMENT_NAME = "<Unnamed>"; 60 61 /** 62 * The module prefix in the element-list file. 63 */ 64 public static final String MODULE_PREFIX = "module:"; 65 66 /** 67 * The default package file name. 68 */ 69 public static final String DEFAULT_PACKAGE_FILE_NAME = "default"; 70 } | 47 * The line separator for the current operating system. 48 */ 49 public static final String NL = System.getProperty("line.separator"); 50 51 /** 52 * The default package name. 53 */ 54 public static final String DEFAULT_PACKAGE_NAME = "<Unnamed>"; 55 56 /** 57 * The default module or a package name. 58 */ 59 public static final String DEFAULT_ELEMENT_NAME = "<Unnamed>"; 60 61 /** 62 * The module prefix in the element-list file. 63 */ 64 public static final String MODULE_PREFIX = "module:"; 65 66 /** 67 * Number of characters after which to insert line breaks in preformatted text. 68 */ 69 public static final int PREFORMATTED_LINE_LENGTH = 80; 70 } |