1
2
3
4
5
6
7 package org.xrn.ant;
8
9 /***
10 * @author Propriétaire
11 *
12 * TODO To change the template for this generated type comment go to
13 * Window - Preferences - Java - Code Style - Code Templates
14 */
15 public abstract class XRNConstante
16 {
17 /***
18 * The prefix where all public resources are present within the jar.
19 */
20 final static String COMMON_PREFIX = "XMLReleaseNotes/";
21
22 /***
23 * The common location of all plugin XSLTs.
24 */
25 final static String PLUGIN_COMMON_PREFIX = COMMON_PREFIX + "plugin/";
26
27 /***
28 * The name of the target CSS copied into the destination directory.
29 */
30 final static String COPIED_CSS_FILE_NAME = "stylesheet.css";
31
32 /***
33 * The name of the main XSLT defaut layout transformation style sheet.
34 */
35 final static String SIMPLE_XSL = "XMLReleaseNotes2HTML.xsl";
36 }