KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > idaremedia > antx > FixtureIds


1 /**
2  * $Id: FixtureIds.java 180 2007-03-15 12:56:38Z ssmc $
3  * Copyright 2002-2004 iDare Media, Inc. All rights reserved.
4  *
5  * Originally written by iDare Media, Inc. for release into the public domain. This
6  * library, source form and binary form, is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public License as published by the
8  * Free Software Foundation; either version 2.1 of the License, or (at your option) any
9  * later version.<p>
10  *
11  * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
12  * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
13  * See the GNU LGPL (GNU Lesser General Public License) for more details.<p>
14  *
15  * You should have received a copy of the GNU Lesser General Public License along with this
16  * library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite
17  * 330, Boston, MA 02111-1307 USA. The LGPL can be found online at
18  * http://www.fsf.org/copyleft/lesser.html<p>
19  *
20  * This product has been influenced by several projects within the open-source community.
21  * The JWare developers wish to acknowledge the open-source community's support. For more
22  * information regarding the open-source products used within JWare, please visit the
23  * JWare website.
24  *----------------------------------------------------------------------------------------*
25  * WEBSITE- http://www.jware.info EMAIL- inquiries@jware.info
26  *----------------------------------------------------------------------------------------*
27  **/

28
29 package com.idaremedia.antx;
30
31 /**
32  * AntX's public iteration and project configuration category identifiers.
33  *
34  * @since JWare/AntX 0.1 (originally IterationProperties)
35  * @author ssmc, &copy;2002-2004 <a HREF="http://www.jware.info">iDare&nbsp;Media,&nbsp;Inc.</a>
36  * @version 0.5
37  * @.safety multiple
38  * @.group impl,infra
39  * @see FixtureOverlays
40  **/

41
42 public class FixtureIds
43 {
44     /**
45      * Prefix for all global iteration properties.
46      * @since JWare/AntX 0.4
47      **/

48     public static final String JavaDoc PREFIX =
49         AntX.ANTX_INTERNAL_ID+"fixture.";
50
51
52     /**
53      * EmitConfiguration Instance.
54      **/

55     public static final String JavaDoc EMIT_CONFIGURATION =
56         PREFIX+"EmitConfiguration";
57
58
59     /**
60      * UIStringManager Instance.
61      **/

62     public static final String JavaDoc MSGS_STRINGMANAGER =
63         PREFIX+"UIStringManager";
64
65
66     /**
67      * Printer Registry Instance.
68      * @since JWare/AntX 0.2
69      **/

70     public static final String JavaDoc PRINTER_REGISTRY =
71         PREFIX+"PrinterRegistry";
72
73
74     /**
75      * General captured logs administration.
76      * @since JWare/AntX 0.4
77      **/

78     public static final String JavaDoc CAPTURED_LOG_OUTPUTS =
79         PREFIX+"CapturedLogOutputs";
80
81
82     /**
83      * Standard System output LogRecorder Instance.
84      * @since JWare/AntX 0.3
85      **/

86     public static final String JavaDoc SYSTEM_STREAMS_RECORDER =
87         PREFIX+"SystemStreamsRecorder";
88
89
90     /**
91      * Ant logs LogsRecorder Instance.
92      * @since JWare/AntX 0.2
93      **/

94     public static final String JavaDoc ANT_LOGS_RECORDER =
95         PREFIX+"AntLogsRecorder";
96
97
98     /**
99      * Uncaught ProblemHandler administration.
100      * @since JWare/AntX 0.3
101      **/

102     public static final String JavaDoc PROBLEM_ADMINISTRATION =
103         PREFIX+"ProblemHandler";
104
105
106     /**
107      * TaskExaminer Utility.
108      * @since JWare/AntX 0.4
109      **/

110     public static final String JavaDoc TASK_EXAMINER =
111         PREFIX+"TaskExaminer";
112
113
114     /**
115      * Mutable Properties Utilities.
116      * @since JWare/AntX 0.4
117      **/

118     public static final String JavaDoc VARIABLES_ADMINISTRATION =
119         PREFIX+"ExportedProperties";
120
121
122     /**
123      * AntX value URI property value interpreter.
124      * @since JWare/AntX 0.5
125      **/

126     public static final String JavaDoc VALUEURI_INTERPRETER =
127         PREFIX+"ValueUriInterperter";
128
129
130     /**
131      * AntX iteration fixture overlays administration.
132      * @since JWare/AntX 0.5
133      **/

134     public static final String JavaDoc FIXTURE_OVERLAYS =
135         PREFIX+"FixtureOverlays";
136
137
138
139     /**
140      * Allows extension of list of iteration-based elements.
141      **/

142     protected FixtureIds()
143     { }
144 }
145
146 /* end-of-FixtureIds.java */
147
Popular Tags