Eclipseplugins
TtUserExits.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 01:45:58 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 
51 @XmlAccessorType(XmlAccessType.FIELD)
52 @XmlType(name = "", propOrder = {
53  "ttUserExitsRow"
54 })
55 @XmlRootElement(name = "ttUserExits")
56 public class TtUserExits {
57 
58  protected List<TtUserExits.TtUserExitsRow> ttUserExitsRow;
59 
83  if (ttUserExitsRow == null) {
84  ttUserExitsRow = new ArrayList<TtUserExits.TtUserExitsRow>();
85  }
86  return this.ttUserExitsRow;
87  }
88 
89 
111  @XmlAccessorType(XmlAccessType.FIELD)
112  @XmlType(name = "", propOrder = {
113  "userExitName",
114  "isSpecialUserExit",
115  "userExitOccurrence"
116  })
117  public static class TtUserExitsRow {
118 
119  @XmlElement(name = "UserExitName", required = true, nillable = true)
120  protected String userExitName;
121  @XmlElement(name = "IsSpecialUserExit", required = true, type = Boolean.class, nillable = true)
122  protected Boolean isSpecialUserExit;
123  @XmlElement(name = "UserExitOccurrence", required = true, type = Integer.class, nillable = true)
124  protected Integer userExitOccurrence;
125 
134  public String getUserExitName() {
135  return userExitName;
136  }
137 
146  public void setUserExitName(String value) {
147  this.userExitName = value;
148  }
149 
158  public Boolean isIsSpecialUserExit() {
159  return isSpecialUserExit;
160  }
161 
170  public void setIsSpecialUserExit(Boolean value) {
171  this.isSpecialUserExit = value;
172  }
173 
182  public Integer getUserExitOccurrence() {
183  return userExitOccurrence;
184  }
185 
194  public void setUserExitOccurrence(Integer value) {
195  this.userExitOccurrence = value;
196  }
197 
198  }
199 
200 }
List< TtUserExits.TtUserExitsRow > getTtUserExitsRow()