All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.oma.protocols.mlp.svc_init.Coord Maven / Gradle / Ivy


package org.oma.protocols.mlp.svc_init;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:element xmlns:ns="MLP_SVC_INIT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="coord">
 *   <xs:complexType>
 *     <xs:sequence>
 *       <xs:element ref="ns:X"/>
 *       <xs:element ref="ns:Y" minOccurs="0"/>
 *       <xs:element ref="ns:Z" minOccurs="0"/>
 *     </xs:sequence>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Coord { private X X; private Y Y; private Z Z; /** * Get the 'X' element value. * * @return value */ public X getX() { return X; } /** * Set the 'X' element value. * * @param x */ public void setX(X x) { X = x; } /** * Get the 'Y' element value. * * @return value */ public Y getY() { return Y; } /** * Set the 'Y' element value. * * @param y */ public void setY(Y y) { Y = y; } /** * Get the 'Z' element value. * * @return value */ public Z getZ() { return Z; } /** * Set the 'Z' element value. * * @param z */ public void setZ(Z z) { Z = z; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy