01: /*
02: * GeoTools - OpenSource mapping toolkit
03: * http://geotools.org
04: * (C) 2002-2006, GeoTools Project Managment Committee (PMC)
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: */
16: package org.geotools.xlink.bindings;
17:
18: import javax.xml.namespace.QName;
19:
20: /**
21: * This interface contains the qualified names of all the types,elements, and
22: * attributes in the http://www.w3.org/1999/xlink schema.
23: *
24: * @generated
25: */
26: public interface XLINK {
27: /** @generated */
28: public static final String NAMESPACE = "http://www.w3.org/1999/xlink";
29:
30: /* Type Definitions */
31:
32: /* Elements */
33:
34: /* Attributes */
35:
36: /** @generated */
37: public static final QName ACTUATE = new QName(
38: "http://www.w3.org/1999/xlink", "actuate");
39:
40: /** @generated */
41: public static final QName ARCROLE = new QName(
42: "http://www.w3.org/1999/xlink", "arcrole");
43:
44: /** @generated */
45: public static final QName FROM = new QName(
46: "http://www.w3.org/1999/xlink", "from");
47:
48: /** @generated */
49: public static final QName HREF = new QName(
50: "http://www.w3.org/1999/xlink", "href");
51:
52: /** @generated */
53: public static final QName LABEL = new QName(
54: "http://www.w3.org/1999/xlink", "label");
55:
56: /** @generated */
57: public static final QName ROLE = new QName(
58: "http://www.w3.org/1999/xlink", "role");
59:
60: /** @generated */
61: public static final QName SHOW = new QName(
62: "http://www.w3.org/1999/xlink", "show");
63:
64: /** @generated */
65: public static final QName TITLE = new QName(
66: "http://www.w3.org/1999/xlink", "title");
67:
68: /** @generated */
69: public static final QName TO = new QName(
70: "http://www.w3.org/1999/xlink", "to");
71: }
|