1
2
3
4
5
6
7
8
9 package net.sf.cobol2j;
10
11 import java.math.BigInteger;
12 import javax.xml.bind.annotation.XmlAccessType;
13 import javax.xml.bind.annotation.XmlAccessorType;
14 import javax.xml.bind.annotation.XmlAttribute;
15 import javax.xml.bind.annotation.XmlType;
16
17
18 /***
19 * <p>Java class for FieldsGroup complex type.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <complexType name="FieldsGroup">
25 * <complexContent>
26 * <extension base="{}FieldsList">
27 * <attribute name="DependingOn" type="{http://www.w3.org/2001/XMLSchema}string" />
28 * <attribute name="Name" type="{http://www.w3.org/2001/XMLSchema}string" />
29 * <attribute name="Occurs" type="{http://www.w3.org/2001/XMLSchema}integer" />
30 * </extension>
31 * </complexContent>
32 * </complexType>
33 * </pre>
34 *
35 *
36 */
37 @XmlAccessorType(XmlAccessType.FIELD)
38 @XmlType(name = "FieldsGroup")
39 public class FieldsGroup
40 extends FieldsList
41 {
42
43 @XmlAttribute(name = "DependingOn")
44 protected String dependingOn;
45 @XmlAttribute(name = "Name")
46 protected String name;
47 @XmlAttribute(name = "Occurs")
48 protected BigInteger occurs;
49
50 /***
51 * Gets the value of the dependingOn property.
52 *
53 * @return
54 * possible object is
55 * {@link String }
56 *
57 */
58 public String getDependingOn() {
59 return dependingOn;
60 }
61
62 /***
63 * Sets the value of the dependingOn property.
64 *
65 * @param value
66 * allowed object is
67 * {@link String }
68 *
69 */
70 public void setDependingOn(String value) {
71 this.dependingOn = value;
72 }
73
74 /***
75 * Gets the value of the name property.
76 *
77 * @return
78 * possible object is
79 * {@link String }
80 *
81 */
82 public String getName() {
83 return name;
84 }
85
86 /***
87 * Sets the value of the name property.
88 *
89 * @param value
90 * allowed object is
91 * {@link String }
92 *
93 */
94 public void setName(String value) {
95 this.name = value;
96 }
97
98 /***
99 * Gets the value of the occurs property.
100 *
101 * @return
102 * possible object is
103 * {@link BigInteger }
104 *
105 */
106 public BigInteger getOccurs() {
107 return occurs;
108 }
109
110 /***
111 * Sets the value of the occurs property.
112 *
113 * @param value
114 * allowed object is
115 * {@link BigInteger }
116 *
117 */
118 public void setOccurs(BigInteger value) {
119 this.occurs = value;
120 }
121
122 }