KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > xml > retriever > catalog > CatalogAttribute


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 package org.netbeans.modules.xml.retriever.catalog;
20
21 import org.netbeans.modules.xml.xam.locator.*;
22
23 /**
24  *
25  * @author girix
26  */

27 public enum CatalogAttribute {
28     /*
29      * Attribute on the catalog node
30      */

31     xmlns,
32     
33     /**
34      * Attribute on all elements
35      */

36     id,
37     /**
38      * Key for
39      * - group
40      * - catalog
41      */

42     prefer,
43     /**
44      * Key for
45      * - public
46      */

47     publicId,
48     /**
49      * Key for
50      * - system
51      */

52     systemId,
53     /**
54      * Value for
55      * - public
56      * - system
57      * - uri
58      */

59     uri,
60     /**
61      * Key for
62      * - rewriteSystem
63      * - delegateSystem
64      */

65     systemIdStartString,
66     /**
67      * Value for
68      * - rewriteSystem
69      * - rewriteURI
70      */

71     rewritePrefix,
72     /**
73      * Key for
74      * - delegatePublic
75      */

76     publicIdStartString,
77     /**
78      * Value for
79      * -delegatePublic
80      * -delegateSystem
81      * -nextCatalog
82      */

83     catalog,
84     /**
85      * Key for
86      * - uri
87      */

88     name,
89     /**
90      * Key for
91      * - rewriteURI
92      * - delegateURI
93      */

94     uriStartString,
95     
96     /*
97      * Key for storing the Original URI of the local/internet resource
98      * - not in the catalog definition
99      */

100     originalResourcePointer;
101 }
102
Popular Tags