All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rahulsom.svg.FeDistantLight Maven / Gradle / Ivy


package com.github.rahulsom.svg;

import java.util.Collection;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType>
 *   <complexContent>
 *     <extension base="{http://www.w3.org/2000/svg}SVG.feDistantLight.content">
 *       <attGroup ref="{http://www.w3.org/2000/svg}SVG.Core.attrib"/>
 *       <attribute name="azimuth" type="{http://www.w3.org/2000/svg}Number.datatype" />
 *       <attribute name="elevation" type="{http://www.w3.org/2000/svg}Number.datatype" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") @XmlRootElement(name = "feDistantLight") public class FeDistantLight extends SVGFeDistantLightContent { @XmlAttribute(name = "azimuth") protected String azimuth; @XmlAttribute(name = "elevation") protected String elevation; @XmlAttribute(name = "space", namespace = "http://www.w3.org/XML/1998/namespace", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String space; @XmlAttribute(name = "lang", namespace = "http://www.w3.org/XML/1998/namespace") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String lang; @XmlAttribute(name = "id") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String id; @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace") protected String base; /** * Gets the value of the azimuth property. * * @return * possible object is * {@link String } * */ public String getAzimuth() { return azimuth; } /** * Sets the value of the azimuth property. * * @param value * allowed object is * {@link String } * */ public void setAzimuth(String value) { this.azimuth = value; } /** * Gets the value of the elevation property. * * @return * possible object is * {@link String } * */ public String getElevation() { return elevation; } /** * Sets the value of the elevation property. * * @param value * allowed object is * {@link String } * */ public void setElevation(String value) { this.elevation = value; } /** * Gets the value of the space property. * * @return * possible object is * {@link String } * */ public String getSpace() { return space; } /** * Sets the value of the space property. * * @param value * allowed object is * {@link String } * */ public void setSpace(String value) { this.space = value; } /** * Gets the value of the lang property. * * @return * possible object is * {@link String } * */ public String getLang() { return lang; } /** * Sets the value of the lang property. * * @param value * allowed object is * {@link String } * */ public void setLang(String value) { this.lang = value; } /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } public FeDistantLight withAzimuth(String value) { setAzimuth(value); return this; } public FeDistantLight withElevation(String value) { setElevation(value); return this; } public FeDistantLight withSpace(String value) { setSpace(value); return this; } public FeDistantLight withLang(String value) { setLang(value); return this; } public FeDistantLight withId(String value) { setId(value); return this; } public FeDistantLight withBase(String value) { setBase(value); return this; } @Override public FeDistantLight withAnimateOrSet(Object... values) { if (values!= null) { for (Object value: values) { getAnimateOrSet().add(value); } } return this; } @Override public FeDistantLight withAnimateOrSet(Collection values) { if (values!= null) { getAnimateOrSet().addAll(values); } return this; } }