// // 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; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; import org.w3._2001.smil20.language.AnimateMotionType; /** * <p>Java-Klasse für animateMotionPrototype complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="animateMotionPrototype"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attGroup ref="{http://www.w3.org/2001/SMIL20/}animAddAccumAttrs"/> * <attGroup ref="{http://www.w3.org/2001/SMIL20/}animValuesAttrs"/> * <attribute name="origin" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "animateMotionPrototype") @XmlSeeAlso({ AnimateMotionType.class }) public class AnimateMotionPrototype { @XmlAttribute(name = "origin") protected String origin; @XmlAttribute(name = "additive") protected String additive; @XmlAttribute(name = "accumulate") protected String accumulate; @XmlAttribute(name = "from") protected String from; @XmlAttribute(name = "by") protected String by; @XmlAttribute(name = "values") protected String values; @XmlAttribute(name = "to") protected String to; /** * Ruft den Wert der origin-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getOrigin() { return origin; } /** * Legt den Wert der origin-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setOrigin(String value) { this.origin = value; } public boolean isSetOrigin() { return (this.origin!= null); } /** * Ruft den Wert der additive-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAdditive() { if (additive == null) { return "replace"; } else { return additive; } } /** * Legt den Wert der additive-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAdditive(String value) { this.additive = value; } public boolean isSetAdditive() { return (this.additive!= null); } /** * Ruft den Wert der accumulate-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAccumulate() { if (accumulate == null) { return "none"; } else { return accumulate; } } /** * Legt den Wert der accumulate-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAccumulate(String value) { this.accumulate = value; } public boolean isSetAccumulate() { return (this.accumulate!= null); } /** * Ruft den Wert der from-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getFrom() { return from; } /** * Legt den Wert der from-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setFrom(String value) { this.from = value; } public boolean isSetFrom() { return (this.from!= null); } /** * Ruft den Wert der by-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getBy() { return by; } /** * Legt den Wert der by-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setBy(String value) { this.by = value; } public boolean isSetBy() { return (this.by!= null); } /** * Ruft den Wert der values-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getValues() { return values; } /** * Legt den Wert der values-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setValues(String value) { this.values = value; } public boolean isSetValues() { return (this.values!= null); } /** * Ruft den Wert der to-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getTo() { return to; } /** * Legt den Wert der to-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setTo(String value) { this.to = value; } public boolean isSetTo() { return (this.to!= null); } }