View Javadoc
1   //
2   // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.2-b01-fcs 
3   // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
4   // Any modifications to this file will be lost upon recompilation of the source schema. 
5   // Generated on: 2009.01.18 at 10:12:14 AM CET 
6   //
7   
8   
9   package net.sf.cobol2j;
10  
11  import javax.xml.bind.annotation.XmlAccessType;
12  import javax.xml.bind.annotation.XmlAccessorType;
13  import javax.xml.bind.annotation.XmlAttribute;
14  import javax.xml.bind.annotation.XmlType;
15  
16  
17  /***
18   * <p>Java class for RecordFormat complex type.
19   * 
20   * <p>The following schema fragment specifies the expected content contained within this class.
21   * 
22   * <pre>
23   * &lt;complexType name="RecordFormat">
24   *   &lt;complexContent>
25   *     &lt;extension base="{}FieldsList">
26   *       &lt;attribute name="cobolRecordName" type="{http://www.w3.org/2001/XMLSchema}string" />
27   *       &lt;attribute name="distinguishFieldValue" type="{http://www.w3.org/2001/XMLSchema}string" />
28   *     &lt;/extension>
29   *   &lt;/complexContent>
30   * &lt;/complexType>
31   * </pre>
32   * 
33   * 
34   */
35  @XmlAccessorType(XmlAccessType.FIELD)
36  @XmlType(name = "RecordFormat")
37  public class RecordFormat
38      extends FieldsList
39  {
40  
41      @XmlAttribute
42      protected String cobolRecordName;
43      @XmlAttribute
44      protected String distinguishFieldValue;
45  
46      /***
47       * Gets the value of the cobolRecordName property.
48       * 
49       * @return
50       *     possible object is
51       *     {@link String }
52       *     
53       */
54      public String getCobolRecordName() {
55          return cobolRecordName;
56      }
57  
58      /***
59       * Sets the value of the cobolRecordName property.
60       * 
61       * @param value
62       *     allowed object is
63       *     {@link String }
64       *     
65       */
66      public void setCobolRecordName(String value) {
67          this.cobolRecordName = value;
68      }
69  
70      /***
71       * Gets the value of the distinguishFieldValue property.
72       * 
73       * @return
74       *     possible object is
75       *     {@link String }
76       *     
77       */
78      public String getDistinguishFieldValue() {
79          return distinguishFieldValue;
80      }
81  
82      /***
83       * Sets the value of the distinguishFieldValue property.
84       * 
85       * @param value
86       *     allowed object is
87       *     {@link String }
88       *     
89       */
90      public void setDistinguishFieldValue(String value) {
91          this.distinguishFieldValue = value;
92      }
93  
94  }