// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-646 // 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: 2010.06.29 at 05:04:10 PM MESZ // package slash.navigation.lmx.binding; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlType; /** * <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"> * <choice> * <element name="landmark" type="{http://www.nokia.com/schemas/location/landmarks/1/0}landmarkType"/> * <element name="landmarkCollection" type="{http://www.nokia.com/schemas/location/landmarks/1/0}landmarkCollectionType"/> * </choice> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "landmark", "landmarkCollection" }) @XmlRootElement(name = "lmx") public class Lmx { protected LandmarkType landmark; protected LandmarkCollectionType landmarkCollection; /** * Gets the value of the landmark property. * * @return * possible object is * {@link LandmarkType } * */ public LandmarkType getLandmark() { return landmark; } /** * Sets the value of the landmark property. * * @param value * allowed object is * {@link LandmarkType } * */ public void setLandmark(LandmarkType value) { this.landmark = value; } /** * Gets the value of the landmarkCollection property. * * @return * possible object is * {@link LandmarkCollectionType } * */ public LandmarkCollectionType getLandmarkCollection() { return landmarkCollection; } /** * Sets the value of the landmarkCollection property. * * @param value * allowed object is * {@link LandmarkCollectionType } * */ public void setLandmarkCollection(LandmarkCollectionType value) { this.landmarkCollection = value; } }