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.gml3.bindings.smil;
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/2001/SMIL20/Language schema.
23: *
24: * @generated
25: */
26: public interface SMIL20LANG {
27: /** @generated */
28: public static final String NAMESPACE = "http://www.w3.org/2001/SMIL20/Language";
29:
30: /* Type Definitions */
31: /** @generated */
32: public static final QName ANIMATECOLORTYPE = new QName(
33: "http://www.w3.org/2001/SMIL20/Language",
34: "animateColorType");
35:
36: /** @generated */
37: public static final QName ANIMATEMOTIONTYPE = new QName(
38: "http://www.w3.org/2001/SMIL20/Language",
39: "animateMotionType");
40:
41: /** @generated */
42: public static final QName ANIMATETYPE = new QName(
43: "http://www.w3.org/2001/SMIL20/Language", "animateType");
44:
45: /** @generated */
46: public static final QName SETTYPE = new QName(
47: "http://www.w3.org/2001/SMIL20/Language", "setType");
48:
49: /* Elements */
50: /** @generated */
51: public static final QName ANIMATE = new QName(
52: "http://www.w3.org/2001/SMIL20/Language", "animate");
53:
54: /** @generated */
55: public static final QName ANIMATECOLOR = new QName(
56: "http://www.w3.org/2001/SMIL20/Language", "animateColor");
57:
58: /** @generated */
59: public static final QName ANIMATEMOTION = new QName(
60: "http://www.w3.org/2001/SMIL20/Language", "animateMotion");
61:
62: /** @generated */
63: public static final QName SET = new QName(
64: "http://www.w3.org/2001/SMIL20/Language", "set");
65:
66: /* Attributes */
67: }
|