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

org.oma.protocols.mlp.svc_init.Time 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="time">
 *   <xs:complexType>
 *     <xs:simpleContent>
 *       <xs:extension base="xs:string">
 *         <xs:attribute type="xs:string" default="0000" name="utc_off"/>
 *       </xs:extension>
 *     </xs:simpleContent>
 *   </xs:complexType>
 * </xs:element>
 * 
*/ public class Time { private String string; private String utcOff; /** * Get the extension value. * * @return value */ public String getString() { return string; } /** * Set the extension value. * * @param string */ public void setString(String string) { this.string = string; } /** * Get the 'utc_off' attribute value. * * @return value */ public String getUtcOff() { return utcOff; } /** * Set the 'utc_off' attribute value. * * @param utcOff */ public void setUtcOff(String utcOff) { this.utcOff = utcOff; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy