1
2 package org.xrn.gui;
3
4 import java.awt.Font;
5
6 /***
7 * All the constants that are needed
8 * @author Carsten Maneg
9 * Date Nov 21, 2004
10 * Time 5:35:19 PM
11 */
12 public class XRNConstants {
13
14 public static final Font FONT_BOLD = new Font( "ARIAL", Font.BOLD, 11 );
15
16 public static final String XML_DECLARATION = "<?xml version='1.0' encoding='ISO-8859-1'?>" + '\n';
17
18 public static final String STYLESHEET = "<?xml-stylesheet type='text/xsl' href='../source/XML/XMLReleaseNotes2HTML.xsl'?>" + '\n';
19
20 public static final String XSD_URL = "http://xmlreleasenotes.free.fr ../source/XML/XMLReleaseNotes.xsd";
21 public static final String DEFAULT_PROJECT_DIR = "C:/XMLReleaseNotes/projects";
22 public static final String XML_FILE_SUFFIX = ".xml";
23
24 public static final int NEW_NOTES = 0;
25 public static final int EDIT_NOTES = 1;
26
27 }