// // 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.AnimateColorType; /** * <p>Java-Klasse für animateColorPrototype complex type. * * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * * <pre> * <complexType name="animateColorPrototype"> * <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/}animNamedTargetAttrs"/> * <attGroup ref="{http://www.w3.org/2001/SMIL20/}animValuesAttrs"/> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "animateColorPrototype") @XmlSeeAlso({ AnimateColorType.class }) public class AnimateColorPrototype { @XmlAttribute(name = "additive") protected String additive; @XmlAttribute(name = "accumulate") protected String accumulate; @XmlAttribute(name = "attributeName", required = true) protected String attributeName; @XmlAttribute(name = "attributeType") protected String attributeType; @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 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 attributeName-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAttributeName() { return attributeName; } /** * Legt den Wert der attributeName-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAttributeName(String value) { this.attributeName = value; } public boolean isSetAttributeName() { return (this.attributeName!= null); } /** * Ruft den Wert der attributeType-Eigenschaft ab. * * @return * possible object is * {@link String } * */ public String getAttributeType() { if (attributeType == null) { return "auto"; } else { return attributeType; } } /** * Legt den Wert der attributeType-Eigenschaft fest. * * @param value * allowed object is * {@link String } * */ public void setAttributeType(String value) { this.attributeType = value; } public boolean isSetAttributeType() { return (this.attributeType!= 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); } }