/* * GeoTools - The Open Source Java GIS Toolkit * http://geotools.org * * (C) 2002-2008, Open Source Geospatial Foundation (OSGeo) * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotools.gml3.smil; import java.util.Set; import javax.xml.namespace.QName; import org.geotools.xml.SchemaLocator; import org.geotools.xml.XSD; /** * This interface contains the qualified names of all the types,elements, and * attributes in the http://www.w3.org/2001/SMIL20/Language schema. * * @generated * * * @source $URL$ */ public final class SMIL20LANG extends XSD { /** * singleton instance */ private static SMIL20LANG instance = new SMIL20LANG(); /** @generated */ public static final String NAMESPACE = "http://www.w3.org/2001/SMIL20/Language"; /* Type Definitions */ /** @generated */ public static final QName ANIMATECOLORTYPE = new QName("http://www.w3.org/2001/SMIL20/Language", "animateColorType"); /** @generated */ public static final QName ANIMATEMOTIONTYPE = new QName("http://www.w3.org/2001/SMIL20/Language", "animateMotionType"); /** @generated */ public static final QName ANIMATETYPE = new QName("http://www.w3.org/2001/SMIL20/Language", "animateType"); /** @generated */ public static final QName SETTYPE = new QName("http://www.w3.org/2001/SMIL20/Language", "setType"); /* Elements */ /** @generated */ public static final QName ANIMATE = new QName("http://www.w3.org/2001/SMIL20/Language", "animate"); /** @generated */ public static final QName ANIMATECOLOR = new QName("http://www.w3.org/2001/SMIL20/Language", "animateColor"); /** @generated */ public static final QName ANIMATEMOTION = new QName("http://www.w3.org/2001/SMIL20/Language", "animateMotion"); /** @generated */ public static final QName SET = new QName("http://www.w3.org/2001/SMIL20/Language", "set"); /** * private constructor. */ private SMIL20LANG() { } public static SMIL20LANG getInstance() { return instance; } protected void addDependencies(Set dependencies) { dependencies.add(SMIL20.getInstance()); } /** * Returns 'http://www.w3.org/2001/SMIL20/'. */ public String getNamespaceURI() { return NAMESPACE; } /** * Returns the location of 'smil20-language.xsd'. */ public String getSchemaLocation() { return getClass().getResource("smil20-language.xsd").toString(); } public SchemaLocator createSchemaLocator() { return null; } /* Attributes */ }