// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2009.02.17 at 01:40:15 PM MEZ // package slash.navigation.kml.binding20; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlID; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.HexBinaryAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; import java.math.BigDecimal; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element ref="{http://earth.google.com/kml/2.0}color" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}colorMode" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}heading" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}Icon" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.0}scale" minOccurs="0"/> * </all> * <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}ID" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) @XmlRootElement(name = "IconStyle") public class IconStyle { @XmlElement(type = String.class) @XmlJavaTypeAdapter(HexBinaryAdapter.class) protected byte[] color; @XmlJavaTypeAdapter(CollapsedStringAdapter.class) protected String colorMode; protected Double heading; @XmlElement(name = "Icon") protected Icon icon; protected BigDecimal scale; @XmlAttribute @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID protected String id; /** * Gets the value of the color property. * * @return * possible object is * {@link String } * */ public byte[] getColor() { return color; } /** * Sets the value of the color property. * * @param value * allowed object is * {@link String } * */ public void setColor(byte[] value) { this.color = value; } /** * Gets the value of the colorMode property. * * @return * possible object is * {@link String } * */ public String getColorMode() { return colorMode; } /** * Sets the value of the colorMode property. * * @param value * allowed object is * {@link String } * */ public void setColorMode(String value) { this.colorMode = value; } /** * Gets the value of the heading property. * * @return * possible object is * {@link Double } * */ public Double getHeading() { return heading; } /** * Sets the value of the heading property. * * @param value * allowed object is * {@link Double } * */ public void setHeading(Double value) { this.heading = value; } /** * Gets the value of the icon property. * * @return * possible object is * {@link Icon } * */ public Icon getIcon() { return icon; } /** * Sets the value of the icon property. * * @param value * allowed object is * {@link Icon } * */ public void setIcon(Icon value) { this.icon = value; } /** * Gets the value of the scale property. * * @return * possible object is * {@link BigDecimal } * */ public BigDecimal getScale() { return scale; } /** * Sets the value of the scale property. * * @param value * allowed object is * {@link BigDecimal } * */ public void setScale(BigDecimal value) { this.scale = 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; } }