// // 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: 2008.10.12 at 02:39:09 PM CEST // package slash.navigation.kml.binding22beta; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for StyleType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="StyleType"> * <complexContent> * <extension base="{http://earth.google.com/kml/2.2}AbstractStyleSelectorType"> * <sequence> * <element ref="{http://earth.google.com/kml/2.2}IconStyle" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}LabelStyle" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}LineStyle" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}PolyStyle" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}BalloonStyle" minOccurs="0"/> * <element ref="{http://earth.google.com/kml/2.2}ListStyle" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "StyleType", propOrder = { "iconStyle", "labelStyle", "lineStyle", "polyStyle", "balloonStyle", "listStyle" }) public class StyleType extends AbstractStyleSelectorType { @XmlElement(name = "IconStyle") protected IconStyleType iconStyle; @XmlElement(name = "LabelStyle") protected LabelStyleType labelStyle; @XmlElement(name = "LineStyle") protected LineStyleType lineStyle; @XmlElement(name = "PolyStyle") protected PolyStyleType polyStyle; @XmlElement(name = "BalloonStyle") protected BalloonStyleType balloonStyle; @XmlElement(name = "ListStyle") protected ListStyleType listStyle; /** * Gets the value of the iconStyle property. * * @return * possible object is * {@link IconStyleType } * */ public IconStyleType getIconStyle() { return iconStyle; } /** * Sets the value of the iconStyle property. * * @param value * allowed object is * {@link IconStyleType } * */ public void setIconStyle(IconStyleType value) { this.iconStyle = value; } /** * Gets the value of the labelStyle property. * * @return * possible object is * {@link LabelStyleType } * */ public LabelStyleType getLabelStyle() { return labelStyle; } /** * Sets the value of the labelStyle property. * * @param value * allowed object is * {@link LabelStyleType } * */ public void setLabelStyle(LabelStyleType value) { this.labelStyle = value; } /** * Gets the value of the lineStyle property. * * @return * possible object is * {@link LineStyleType } * */ public LineStyleType getLineStyle() { return lineStyle; } /** * Sets the value of the lineStyle property. * * @param value * allowed object is * {@link LineStyleType } * */ public void setLineStyle(LineStyleType value) { this.lineStyle = value; } /** * Gets the value of the polyStyle property. * * @return * possible object is * {@link PolyStyleType } * */ public PolyStyleType getPolyStyle() { return polyStyle; } /** * Sets the value of the polyStyle property. * * @param value * allowed object is * {@link PolyStyleType } * */ public void setPolyStyle(PolyStyleType value) { this.polyStyle = value; } /** * Gets the value of the balloonStyle property. * * @return * possible object is * {@link BalloonStyleType } * */ public BalloonStyleType getBalloonStyle() { return balloonStyle; } /** * Sets the value of the balloonStyle property. * * @param value * allowed object is * {@link BalloonStyleType } * */ public void setBalloonStyle(BalloonStyleType value) { this.balloonStyle = value; } /** * Gets the value of the listStyle property. * * @return * possible object is * {@link ListStyleType } * */ public ListStyleType getListStyle() { return listStyle; } /** * Sets the value of the listStyle property. * * @param value * allowed object is * {@link ListStyleType } * */ public void setListStyle(ListStyleType value) { this.listStyle = value; } }