View Javadoc

1   /*
2    * XMLCV - Gestion de CV sous forme XML
3    * 
4    * Copyright (C) 2004-2005, Damien Raude-Morvan
5    * 
6    * This file is part of XMLCV.
7    *
8    * XMLCV is free software; you can redistribute it and/or modify
9    * it under the terms of the GNU General Public License as published by
10   * the Free Software Foundation; either version 2 of the License, or
11   * (at your option) any later version.
12   *
13   * XMLCV is distributed in the hope that it will be useful,
14   * but WITHOUT ANY WARRANTY; without even the implied warranty of
15   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   * GNU General Public License for more details.
17   *
18   * You should have received a copy of the GNU General Public License
19   * along with XMLCV; if not, write to the Free Software
20   * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21   * 
22   * Contacts :
23   * - Sébastien Mathy <smathy@tuxfamily.org>
24   * - Emmanuel Berre <eberre@tuxfamily.org>
25   * - Damien Raude-Morvan <drazzib@drazzib.com>
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"; //$NON-NLS-1$
39  
40  	/*** XSLT Stylesheet for HTML Output */
41  	public static final String STYLES_XSL = "/xmlcv/xsl/cvx.xsl"; //$NON-NLS-1$
42  
43  	/*** XSLT Stylesheet for Print Output (PDF, RTF, Preview) */
44  	public static final String STYLES_XSL_FO = "/xmlcv/xsl/cvxFO.xsl"; //$NON-NLS-1$
45  
46  	/*** Path of icon for "Quit" */
47  	public static final String ICON_QUIT = "/xmlcv/icons/exit.png"; //$NON-NLS-1$
48  
49  	/*** Path of icon for "Preview" */
50  	public static final String ICON_PREVIEW = "/xmlcv/icons/preview.png"; //$NON-NLS-1$
51  
52  	/*** Path of icon for "OUTRTF" */
53  	public static final String ICON_OUTRTF = "/xmlcv/icons/outrtf.png"; //$NON-NLS-1$
54  
55  	/*** Path of icon for "OUTPDF" */
56  	public static final String ICON_OUTPDF = "/xmlcv/icons/outpdf.png"; //$NON-NLS-1$
57  
58  	/*** Path of icon for "OUTPS" */
59  	public static final String ICON_OUTPS = "/xmlcv/icons/outps.png"; //$NON-NLS-1$
60  
61  	/*** Path of icon for XmlCV Logo */
62  	public static final String ICON_LOGO = "/xmlcv/icons/logo.png"; //$NON-NLS-1$
63  
64  	/*** Path of icon for "Open" */
65  	public static final String ICON_FILENEW = "/xmlcv/icons/filenew.png"; //$NON-NLS-1$
66  
67  	/*** Path of icon for "Open" */
68  	public static final String ICON_FILEOPEN = "/xmlcv/icons/fileopen.png"; //$NON-NLS-1$
69  
70  	/*** Path of icon for "Save" */
71  	public static final String ICON_FILESAVE = "/xmlcv/icons/filesave.png"; //$NON-NLS-1$
72  
73  	/*** Path of icon for "OUTHTML" */
74  	public static final String ICON_OUTHTML = "/xmlcv/icons/outhtml.png"; //$NON-NLS-1$
75  
76  	/***
77  	 * Hide public constructor
78  	 */
79  	private Config() {
80  		// Disable default constructor
81  	}
82  
83  }