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

org.oma.protocols.mlp.svc_result.Pd Maven / Gradle / Ivy


package org.oma.protocols.mlp.svc_result;

/** 
 * Schema fragment(s) for this class:
 * 
 * <xs:element xmlns:ns="MLP_SVC_RESULT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="pd">
 *   <xs:complexType>
 *     <xs:sequence>
 *       <xs:element ref="ns:time"/>
 *       <xs:element ref="ns:shape"/>
 *       <xs:sequence minOccurs="0">
 *         <!-- Reference to inner class Sequence -->
 *       </xs:sequence>
 *       <xs:element ref="ns:speed" minOccurs="0"/>
 *       <xs:element ref="ns:direction" minOccurs="0"/>
 *       <xs:element ref="ns:lev_conf" minOccurs="0"/>
 *     </xs:sequence>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Pd { private Time time; private Shape shape; private Sequence sequence; private Speed speed; private Direction direction; private LevConf levConf; /** * Get the 'time' element value. * * @return value */ public Time getTime() { return time; } /** * Set the 'time' element value. * * @param time */ public void setTime(Time time) { this.time = time; } /** * Get the 'shape' element value. * * @return value */ public Shape getShape() { return shape; } /** * Set the 'shape' element value. * * @param shape */ public void setShape(Shape shape) { this.shape = shape; } /** * Get the sequence value. * * @return value */ public Sequence getSequence() { return sequence; } /** * Set the sequence value. * * @param sequence */ public void setSequence(Sequence sequence) { this.sequence = sequence; } /** * Get the 'speed' element value. * * @return value */ public Speed getSpeed() { return speed; } /** * Set the 'speed' element value. * * @param speed */ public void setSpeed(Speed speed) { this.speed = speed; } /** * Get the 'direction' element value. * * @return value */ public Direction getDirection() { return direction; } /** * Set the 'direction' element value. * * @param direction */ public void setDirection(Direction direction) { this.direction = direction; } /** * Get the 'lev_conf' element value. * * @return value */ public LevConf getLevConf() { return levConf; } /** * Set the 'lev_conf' element value. * * @param levConf */ public void setLevConf(LevConf levConf) { this.levConf = levConf; } /** * Schema fragment(s) for this class: *
     * <xs:sequence xmlns:ns="MLP_SVC_RESULT_310.dtd" xmlns:xs="http://www.w3.org/2001/XMLSchema" minOccurs="0">
     *   <xs:element ref="ns:alt"/>
     *   <xs:element ref="ns:alt_acc" minOccurs="0"/>
     * </xs:sequence>
     * 
*/ public static class Sequence { private Alt alt; private AltAcc altAcc; /** * Get the 'alt' element value. * * @return value */ public Alt getAlt() { return alt; } /** * Set the 'alt' element value. * * @param alt */ public void setAlt(Alt alt) { this.alt = alt; } /** * Get the 'alt_acc' element value. * * @return value */ public AltAcc getAltAcc() { return altAcc; } /** * Set the 'alt_acc' element value. * * @param altAcc */ public void setAltAcc(AltAcc altAcc) { this.altAcc = altAcc; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy