01: // Copyright 2006, 2007 The Apache Software Foundation
02: //
03: // Licensed under the Apache License, Version 2.0 (the "License");
04: // you may not use this file except in compliance with the License.
05: // You may obtain a copy of the License at
06: //
07: // http://www.apache.org/licenses/LICENSE-2.0
08: //
09: // Unless required by applicable law or agreed to in writing, software
10: // distributed under the License is distributed on an "AS IS" BASIS,
11: // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12: // See the License for the specific language governing permissions and
13: // limitations under the License.
14:
15: package org.apache.tapestry.internal.transform.pages;
16:
17: import java.util.Date;
18:
19: public class FindFieldClass {
20: private boolean _booleanValue;
21:
22: private int[] _intArrayValue;
23:
24: private String _stringValue;
25:
26: private Date[] _dateArrayValue;
27:
28: public boolean isBooleanValue() {
29: return _booleanValue;
30: }
31:
32: public void setBooleanValue(boolean booleanValue) {
33: _booleanValue = booleanValue;
34: }
35:
36: public Date[] getDateArrayValue() {
37: return _dateArrayValue;
38: }
39:
40: public void setDateArrayValue(Date[] dateArrayValue) {
41: _dateArrayValue = dateArrayValue;
42: }
43:
44: public int[] getIntArrayValue() {
45: return _intArrayValue;
46: }
47:
48: public void setIntArrayValue(int[] intArrayValue) {
49: _intArrayValue = intArrayValue;
50: }
51:
52: public String getStringValue() {
53: return _stringValue;
54: }
55:
56: public void setStringValue(String stringValue) {
57: _stringValue = stringValue;
58: }
59:
60: }
|