1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 package org.xmlcv.util;
28
29 /***
30 * Main frame for XMLCV window
31 *
32 * @version $Revision: 114 $
33 * @author <a href="mailto:drazzib@drazzib.com">Damien Raude-Morvan </a>
34 */
35 public class Config {
36
37 /*** Where we can find the message for translating XML */
38 public static final String BUNDLE_NAME = "xmlcv.properties.messages";
39
40 /*** XSLT Stylesheet for HTML Output */
41 public static final String STYLES_XSL = "/xmlcv/xsl/cvx.xsl";
42
43 /*** XSLT Stylesheet for Print Output (PDF, RTF, Preview) */
44 public static final String STYLES_XSL_FO = "/xmlcv/xsl/cvxFO.xsl";
45
46 /*** Path of icon for "Quit" */
47 public static final String ICON_QUIT = "/xmlcv/icons/exit.png";
48
49 /*** Path of icon for "Preview" */
50 public static final String ICON_PREVIEW = "/xmlcv/icons/preview.png";
51
52 /*** Path of icon for "OUTRTF" */
53 public static final String ICON_OUTRTF = "/xmlcv/icons/outrtf.png";
54
55 /*** Path of icon for "OUTPDF" */
56 public static final String ICON_OUTPDF = "/xmlcv/icons/outpdf.png";
57
58 /*** Path of icon for "OUTPS" */
59 public static final String ICON_OUTPS = "/xmlcv/icons/outps.png";
60
61 /*** Path of icon for XmlCV Logo */
62 public static final String ICON_LOGO = "/xmlcv/icons/logo.png";
63
64 /*** Path of icon for "Open" */
65 public static final String ICON_FILENEW = "/xmlcv/icons/filenew.png";
66
67 /*** Path of icon for "Open" */
68 public static final String ICON_FILEOPEN = "/xmlcv/icons/fileopen.png";
69
70 /*** Path of icon for "Save" */
71 public static final String ICON_FILESAVE = "/xmlcv/icons/filesave.png";
72
73 /*** Path of icon for "OUTHTML" */
74 public static final String ICON_OUTHTML = "/xmlcv/icons/outhtml.png";
75
76 /***
77 * Hide public constructor
78 */
79 private Config() {
80
81 }
82
83 }