1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements.  See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache License, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License.  You may obtain a copy of the License at
8    * 
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */ 
17  
18  package org.apache.commons.betwixt.schema;
19  
20  import java.math.BigDecimal;
21  import java.math.BigInteger;
22  
23  /***
24   * @author <a href='http://jakarta.apache.org/'>Jakarta Commons Team</a>
25   * @version $Revision: 438373 $
26   */
27  public class AllSimplesBean {
28  
29      private String string;
30      private BigInteger bigInteger;
31      private int primitiveInt;
32      private Integer objectInt;
33      private long primitiveLong;
34      private Long objectLong;
35      private short primitiveShort;
36      private Short objectShort;
37      private BigDecimal bigDecimal;
38      private float primitiveFloat;
39      private Float objectFloat;
40      private double primitiveDouble;
41      private Double objectDouble;
42      private boolean primitiveBoolean;
43      private Boolean objectBoolean;
44      private byte primitiveByte;
45      private Byte objectByte;
46      private java.util.Date utilDate;
47      private java.sql.Date sqlDate;
48      private java.sql.Time sqlTime;
49      
50      
51      public BigDecimal getBigDecimal() {
52          return bigDecimal;
53      }
54  
55      public BigInteger getBigInteger() {
56          return bigInteger;
57      }
58  
59      public Boolean getObjectBoolean() {
60          return objectBoolean;
61      }
62  
63      public Byte getObjectByte() {
64          return objectByte;
65      }
66  
67      public Double getObjectDouble() {
68          return objectDouble;
69      }
70  
71      public Float getObjectFloat() {
72          return objectFloat;
73      }
74  
75      public Integer getObjectInt() {
76          return objectInt;
77      }
78  
79      public Long getObjectLong() {
80          return objectLong;
81      }
82  
83      public Short getObjectShort() {
84          return objectShort;
85      }
86  
87      public boolean isPrimitiveBoolean() {
88          return primitiveBoolean;
89      }
90  
91      public byte getPrimitiveByte() {
92          return primitiveByte;
93      }
94  
95      public double getPrimitiveDouble() {
96          return primitiveDouble;
97      }
98  
99      public float getPrimitiveFloat() {
100         return primitiveFloat;
101     }
102 
103     public int getPrimitiveInt() {
104         return primitiveInt;
105     }
106 
107     public long getPrimitiveLong() {
108         return primitiveLong;
109     }
110 
111     public short getPrimitiveShort() {
112         return primitiveShort;
113     }
114 
115     public java.sql.Date getSqlDate() {
116         return sqlDate;
117     }
118 
119     public java.sql.Time getSqlTime() {
120         return sqlTime;
121     }
122 
123     public String getString() {
124         return string;
125     }
126 
127     public java.util.Date getUtilDate() {
128         return utilDate;
129     }
130 
131     public void setBigDecimal(BigDecimal decimal) {
132         bigDecimal = decimal;
133     }
134 
135     public void setBigInteger(BigInteger integer) {
136         bigInteger = integer;
137     }
138 
139     public void setObjectBoolean(Boolean boolean1) {
140         objectBoolean = boolean1;
141     }
142 
143     public void setObjectByte(Byte byte1) {
144         objectByte = byte1;
145     }
146 
147     public void setObjectDouble(Double double1) {
148         objectDouble = double1;
149     }
150 
151     public void setObjectFloat(Float float1) {
152         objectFloat = float1;
153     }
154 
155     public void setObjectInt(Integer integer) {
156         objectInt = integer;
157     }
158 
159     public void setObjectLong(Long long1) {
160         objectLong = long1;
161     }
162 
163     public void setObjectShort(Short short1) {
164         objectShort = short1;
165     }
166     
167     public void setPrimitiveBoolean(boolean b) {
168         primitiveBoolean = b;
169     }
170 
171     public void setPrimitiveByte(byte b) {
172         primitiveByte = b;
173     }
174     
175     public void setPrimitiveDouble(double d) {
176         primitiveDouble = d;
177     }
178 
179     public void setPrimitiveFloat(float f) {
180         primitiveFloat = f;
181     }
182 
183     public void setPrimitiveInt(int i) {
184         primitiveInt = i;
185     }
186 
187     public void setPrimitiveLong(long l) {
188         primitiveLong = l;
189     }
190 
191     public void setPrimitiveShort(short s) {
192         primitiveShort = s;
193     }
194 
195     public void setSqlDate(java.sql.Date date) {
196         sqlDate = date;
197     }
198 
199     public void setSqlTime(java.sql.Time time) {
200         sqlTime = time;
201     }
202 
203     public void setString(String string) {
204         this.string = string;
205     }
206 
207     public void setUtilDate(java.util.Date date) {
208         utilDate = date;
209     }
210 
211 }