1
2
3
4
5
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 * <complexType name="RecordFormat">
24 * <complexContent>
25 * <extension base="{}FieldsList">
26 * <attribute name="cobolRecordName" type="{http://www.w3.org/2001/XMLSchema}string" />
27 * <attribute name="distinguishFieldValue" type="{http://www.w3.org/2001/XMLSchema}string" />
28 * </extension>
29 * </complexContent>
30 * </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 }