//
// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 generiert
// Siehe <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren.
// Generiert: 2016.08.10 um 09:13:50 PM CEST
//
package org.w3._2001.smil20.language;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.w3._2001.smil20.language package.
* <p>An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
private final static QName _Set_QNAME = new QName("http://www.w3.org/2001/SMIL20/Language", "set");
private final static QName _AnimateColor_QNAME = new QName("http://www.w3.org/2001/SMIL20/Language", "animateColor");
private final static QName _Animate_QNAME = new QName("http://www.w3.org/2001/SMIL20/Language", "animate");
private final static QName _AnimateMotion_QNAME = new QName("http://www.w3.org/2001/SMIL20/Language", "animateMotion");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.w3._2001.smil20.language
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link SetType }
*
*/
public SetType createSetType() {
return new SetType();
}
/**
* Create an instance of {@link AnimateMotionType }
*
*/
public AnimateMotionType createAnimateMotionType() {
return new AnimateMotionType();
}
/**
* Create an instance of {@link AnimateColorType }
*
*/
public AnimateColorType createAnimateColorType() {
return new AnimateColorType();
}
/**
* Create an instance of {@link AnimateType }
*
*/
public AnimateType createAnimateType() {
return new AnimateType();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link SetType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.w3.org/2001/SMIL20/Language", name = "set")
public JAXBElement<SetType> createSet(SetType value) {
return new JAXBElement<SetType>(_Set_QNAME, SetType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AnimateColorType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.w3.org/2001/SMIL20/Language", name = "animateColor")
public JAXBElement<AnimateColorType> createAnimateColor(AnimateColorType value) {
return new JAXBElement<AnimateColorType>(_AnimateColor_QNAME, AnimateColorType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AnimateType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.w3.org/2001/SMIL20/Language", name = "animate")
public JAXBElement<AnimateType> createAnimate(AnimateType value) {
return new JAXBElement<AnimateType>(_Animate_QNAME, AnimateType.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link AnimateMotionType }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.w3.org/2001/SMIL20/Language", name = "animateMotion")
public JAXBElement<AnimateMotionType> createAnimateMotion(AnimateMotionType value) {
return new JAXBElement<AnimateMotionType>(_AnimateMotion_QNAME, AnimateMotionType.class, null, value);
}
}