blob: 163b03154777b8ddf29047e61f4e3b71642b4291 [file] [log] [blame]
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// 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: 2011.02.15 at 04:31:32 PM CET
//
package org.eclipse.ptp.rm.lml.internal.core.elements;
import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Combines one x-axis-element and one y-axis-element.
*
* <p>Java class for axes_type complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="axes_type">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="x" type="{http://www.llview.de}axis_type"/>
* &lt;element name="y" type="{http://www.llview.de}axis_type"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "axes_type", propOrder = {
"x",
"y"
})
public class AxesType implements Serializable {
@XmlElement(required = true)
protected AxisType x;
@XmlElement(required = true)
protected AxisType y;
/**
* Gets the value of the x property.
*
* @return
* possible object is
* {@link AxisType }
*
*/
public AxisType getX() {
return x;
}
/**
* Sets the value of the x property.
*
* @param value
* allowed object is
* {@link AxisType }
*
*/
public void setX(AxisType value) {
this.x = value;
}
/**
* Gets the value of the y property.
*
* @return
* possible object is
* {@link AxisType }
*
*/
public AxisType getY() {
return y;
}
/**
* Sets the value of the y property.
*
* @param value
* allowed object is
* {@link AxisType }
*
*/
public void setY(AxisType value) {
this.y = value;
}
}