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/ schema.
23: *
24: * @generated
25: */
26: public interface SMIL20 {
27: /** @generated */
28: public static final String NAMESPACE = "http://www.w3.org/2001/SMIL20/";
29:
30: /* Type Definitions */
31: /** @generated */
32: public static final QName ANIMATECOLORPROTOTYPE = new QName(
33: "http://www.w3.org/2001/SMIL20/", "animateColorPrototype");
34:
35: /** @generated */
36: public static final QName ANIMATEMOTIONPROTOTYPE = new QName(
37: "http://www.w3.org/2001/SMIL20/", "animateMotionPrototype");
38:
39: /** @generated */
40: public static final QName ANIMATEPROTOTYPE = new QName(
41: "http://www.w3.org/2001/SMIL20/", "animatePrototype");
42:
43: /** @generated */
44: public static final QName FILLDEFAULTTYPE = new QName(
45: "http://www.w3.org/2001/SMIL20/", "fillDefaultType");
46:
47: /** @generated */
48: public static final QName FILLTIMINGATTRSTYPE = new QName(
49: "http://www.w3.org/2001/SMIL20/", "fillTimingAttrsType");
50:
51: /** @generated */
52: public static final QName NONNEGATIVEDECIMALTYPE = new QName(
53: "http://www.w3.org/2001/SMIL20/", "nonNegativeDecimalType");
54:
55: /** @generated */
56: public static final QName RESTARTDEFAULTTYPE = new QName(
57: "http://www.w3.org/2001/SMIL20/", "restartDefaultType");
58:
59: /** @generated */
60: public static final QName RESTARTTIMINGTYPE = new QName(
61: "http://www.w3.org/2001/SMIL20/", "restartTimingType");
62:
63: /** @generated */
64: public static final QName SETPROTOTYPE = new QName(
65: "http://www.w3.org/2001/SMIL20/", "setPrototype");
66:
67: /** @generated */
68: public static final QName SYNCBEHAVIORDEFAULTTYPE = new QName(
69: "http://www.w3.org/2001/SMIL20/", "syncBehaviorDefaultType");
70:
71: /** @generated */
72: public static final QName SYNCBEHAVIORTYPE = new QName(
73: "http://www.w3.org/2001/SMIL20/", "syncBehaviorType");
74:
75: /* Elements */
76: /** @generated */
77: public static final QName ANIMATE = new QName(
78: "http://www.w3.org/2001/SMIL20/", "animate");
79:
80: /** @generated */
81: public static final QName ANIMATECOLOR = new QName(
82: "http://www.w3.org/2001/SMIL20/", "animateColor");
83:
84: /** @generated */
85: public static final QName ANIMATEMOTION = new QName(
86: "http://www.w3.org/2001/SMIL20/", "animateMotion");
87:
88: /** @generated */
89: public static final QName SET = new QName(
90: "http://www.w3.org/2001/SMIL20/", "set");
91:
92: /* Attributes */
93: }
|