// // 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: 2007.10.07 at 09:27:50 PM CEST // package slash.navigation.kml.binding21; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for IconType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="IconType"> * <complexContent> * <extension base="{http://earth.google.com/kml/2.1}LinkType"> * <sequence> * <element name="x" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="y" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="w" type="{http://www.w3.org/2001/XMLSchema}int"/> * <element name="h" type="{http://www.w3.org/2001/XMLSchema}int"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IconType", propOrder = { "x", "y", "w", "h" }) public class IconType extends LinkType { protected int x; protected int y; protected int w; protected int h; /** * Gets the value of the x property. * */ public int getX() { return x; } /** * Sets the value of the x property. * */ public void setX(int value) { this.x = value; } /** * Gets the value of the y property. * */ public int getY() { return y; } /** * Sets the value of the y property. * */ public void setY(int value) { this.y = value; } /** * Gets the value of the w property. * */ public int getW() { return w; } /** * Sets the value of the w property. * */ public void setW(int value) { this.w = value; } /** * Gets the value of the h property. * */ public int getH() { return h; } /** * Sets the value of the h property. * */ public void setH(int value) { this.h = value; } }