/** * Squidy Interaction Library is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation, either version 3 of the License, * or (at your option) any later version. * * Squidy Interaction Library is distributed in the hope that it will be * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Squidy Interaction Library. If not, see * <http://www.gnu.org/licenses/>. * * 2009 Human-Computer Interaction Group, University of Konstanz. * <http://hci.uni-konstanz.de> * * Please contact info@squidy-lib.de or visit our website * <http://www.squidy-lib.de> for further information. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.3-b01-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.07.09 at 04:05:09 PM CEST // package org.squidy.nodes.tracking.config.xml; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; 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="display" type="{}display"/> * <element name="camera" type="{}camera"/> * <element name="corners" type="{}corner"/> * </choice> * <attribute name="function" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "display", "camera", "corners" }) @XmlRootElement(name = "message") public class Message { protected Display display; protected Camera camera; protected Corner corners; @XmlAttribute(required = true) protected String function; /** * Gets the value of the display property. * * @return * possible object is * {@link Display } * */ public Display getDisplay() { return display; } /** * Sets the value of the display property. * * @param value * allowed object is * {@link Display } * */ public void setDisplay(Display value) { this.display = value; } /** * Gets the value of the camera property. * * @return * possible object is * {@link Camera } * */ public Camera getCamera() { return camera; } /** * Sets the value of the camera property. * * @param value * allowed object is * {@link Camera } * */ public void setCamera(Camera value) { this.camera = value; } /** * Gets the value of the corners property. * * @return * possible object is * {@link Corner } * */ public Corner getCorners() { return corners; } /** * Sets the value of the corners property. * * @param value * allowed object is * {@link Corner } * */ public void setCorners(Corner value) { this.corners = value; } /** * Gets the value of the function property. * * @return * possible object is * {@link String } * */ public String getFunction() { return function; } /** * Sets the value of the function property. * * @param value * allowed object is * {@link String } * */ public void setFunction(String value) { this.function = value; } }