Eclipseplugins
TtBAlpLine.java
1 //
2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-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: 2010.06.08 at 06:04:18 PM MESZ
6 //
7 
8 
9 package com.proalpha.pds.templates.jaxb;
10 
11 import java.util.ArrayList;
12 import java.util.List;
13 import javax.xml.bind.annotation.XmlAccessType;
14 import javax.xml.bind.annotation.XmlAccessorType;
15 import javax.xml.bind.annotation.XmlElement;
16 import javax.xml.bind.annotation.XmlRootElement;
17 import javax.xml.bind.annotation.XmlType;
18 
19 
53 @XmlAccessorType(XmlAccessType.FIELD)
54 @XmlType(name = "", propOrder = {
55  "ttBAlpLineRow"
56 })
57 @XmlRootElement(name = "tt_BAlpLine")
58 public class TtBAlpLine {
59 
60  @XmlElement(name = "tt_BAlpLineRow")
61  protected List<TtBAlpLine.TtBAlpLineRow> ttBAlpLineRow;
62 
86  if (ttBAlpLineRow == null) {
87  ttBAlpLineRow = new ArrayList<TtBAlpLine.TtBAlpLineRow>();
88  }
89  return this.ttBAlpLineRow;
90  }
91 
92 
116  @XmlAccessorType(XmlAccessType.FIELD)
117  @XmlType(name = "", propOrder = {
118  "line",
119  "constant",
120  "content",
121  "module",
122  "subSection"
123  })
124  public static class TtBAlpLineRow {
125 
126  @XmlElement(required = true, type = Integer.class, nillable = true)
127  protected Integer line;
128  @XmlElement(name = "Constant", required = true, nillable = true)
129  protected String constant;
130  @XmlElement(name = "Content", required = true, nillable = true)
131  protected String content;
132  @XmlElement(name = "Module", required = true, nillable = true)
133  protected String module;
134  @XmlElement(name = "SubSection", required = true, nillable = true)
135  protected String subSection;
136 
145  public Integer getLine() {
146  return line;
147  }
148 
157  public void setLine(Integer value) {
158  this.line = value;
159  }
160 
169  public String getConstant() {
170  return constant;
171  }
172 
181  public void setConstant(String value) {
182  this.constant = value;
183  }
184 
193  public String getContent() {
194  return content;
195  }
196 
205  public void setContent(String value) {
206  this.content = value;
207  }
208 
217  public String getModule() {
218  return module;
219  }
220 
229  public void setModule(String value) {
230  this.module = value;
231  }
232 
241  public String getSubSection() {
242  return subSection;
243  }
244 
253  public void setSubSection(String value) {
254  this.subSection = value;
255  }
256 
257  }
258 
259 }
List< TtBAlpLine.TtBAlpLineRow > getTtBAlpLineRow()
Definition: TtBAlpLine.java:85