KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > inversoft > verge > repository > config > BuildConstants


1 /*
2  * Copyright (c) 2003, Inversoft
3  *
4  * This software is distribuable under the GNU Lesser General Public License.
5  * For more information visit gnu.org.
6  */

7 package com.inversoft.verge.repository.config;
8
9
10 /**
11  * This interface holds all the constants needed for building the
12  * Config objects.
13  *
14  * @author Brian Pontarelli
15  * @since 2.0
16  * @version 2.0
17  */

18 public interface BuildConstants {
19
20     /**
21      * The name attribute of repository item's properties in the config file
22      */

23     String JavaDoc NAME_ATTRIBUTE = "name";
24
25     /**
26      * The value attribute of repository item's properties in the config file
27      */

28     String JavaDoc VALUE_ATTRIBUTE = "value";
29
30     /**
31      * The id attribute of repository items in the config file
32      */

33     String JavaDoc ID_ATTRIBUTE = "id";
34
35     /**
36      * The scope attribute of repository items in the config file
37      */

38     String JavaDoc SCOPE_ATTRIBUTE = "scope";
39
40     /**
41      * The class attribute of the repository items in the config file
42      */

43     String JavaDoc CLASS_ATTRIBUTE = "class";
44
45     /**
46      * The items element in the config file
47      */

48     String JavaDoc ITEM_ELEMENT = "item";
49
50     /**
51      * The property element of the items in the config file
52      */

53     String JavaDoc PROPERTY_ELEMENT = "property";
54
55     /**
56      * The reference element of the items in the config file
57      */

58     String JavaDoc REFERENCE_ELEMENT = "reference";
59 }
60
Popular Tags