View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
3   // See <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2019.08.22 at 12:18:25 PM UTC 
6   //
7   
8   
9   package gov.ojp.it.jxdm._3_0;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlSeeAlso;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /**
18   * <p>Java class for TextType complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="TextType"&gt;
24   *   &lt;simpleContent&gt;
25   *     &lt;extension base="&lt;http://www.it.ojp.gov/jxdm/3.0.3/proxy/xsd/1.0&gt;string"&gt;
26   *     &lt;/extension&gt;
27   *   &lt;/simpleContent&gt;
28   * &lt;/complexType&gt;
29   * </pre>
30   * 
31   * 
32   */
33  @XmlAccessorType(XmlAccessType.FIELD)
34  @XmlType(name = "TextType")
35  @XmlSeeAlso({
36      PersonNameTextType.class
37  })
38  public class TextType
39      extends gov.ojp.it.jxdm._3_0_3.proxy.xsd._1.String
40  {
41  
42  
43      /**
44       * Default no-arg constructor
45       * 
46       */
47      public TextType() {
48          super();
49      }
50  
51      /**
52       * Fully-initialising value constructor
53       * 
54       */
55      public TextType(final java.lang.String value, final java.lang.String sourceIDText, final java.lang.String id) {
56          super(value, sourceIDText, id);
57      }
58  
59  }