001: /*
002: * Licensed to the Apache Software Foundation (ASF) under one or more
003: * contributor license agreements. See the NOTICE file distributed with
004: * this work for additional information regarding copyright ownership.
005: * The ASF licenses this file to You under the Apache License, Version 2.0
006: * (the "License"); you may not use this file except in compliance with
007: * the License. You may obtain a copy of the License at
008: *
009: * http://www.apache.org/licenses/LICENSE-2.0
010: *
011: * Unless required by applicable law or agreed to in writing, software
012: * distributed under the License is distributed on an "AS IS" BASIS,
013: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014: * See the License for the specific language governing permissions and
015: * limitations under the License.
016: */
017: package org.apache.cocoon.woody.samples.bindings;
018:
019: /**
020: * ValuesBean used in the 01values test.
021: * @author Marc Portier
022: * @version $Id: ValuesBean.java 433543 2006-08-22 06:22:54Z crossley $
023: */
024: public class ValuesBean {
025: private String simple = "Simple";
026: private String writeOnly = "Write-Only";
027: private String readOnly = "Read-Only";
028: private String date = "19700506";
029: private String diffIn = "Diff-in/out";
030: private String diffOut;
031: private String onUpdate = "On Update";
032: private int updateCount = 0;
033: private boolean bool = true;
034: private String other = "This field is not involved in the form.";
035:
036: public String toString() {
037: return "ValuesBean[\n" + "\tsimple=" + simple + "\n"
038: + "\treadonly=" + readOnly + "\n" + "\twriteonly="
039: + writeOnly + "\n" + "\tdiff-in=" + diffIn + "\n"
040: + "\tdiff-out=" + diffOut + "\n" + "\tdate=" + date
041: + "\n" + "\tbool=" + bool + "\n" + "\tonupdate="
042: + onUpdate + "\n" + "\tupdateCount=" + updateCount
043: + "\n" + "\tother=" + other + "\n";
044: }
045:
046: /**
047: * @return Returns the bool.
048: */
049: public boolean isBool() {
050: return bool;
051: }
052:
053: /**
054: * @param bool The bool to set.
055: */
056: public void setBool(boolean bool) {
057: this .bool = bool;
058: }
059:
060: /**
061: * @return Returns the date.
062: */
063: public String getDate() {
064: return date;
065: }
066:
067: /**
068: * @param date The date to set.
069: */
070: public void setDate(String date) {
071: this .date = date;
072: }
073:
074: /**
075: * @return Returns the diffIn.
076: */
077: public String getDiffIn() {
078: return diffIn;
079: }
080:
081: /**
082: * @param diffIn The diffIn to set.
083: */
084: public void setDiffIn(String diffIn) {
085: this .diffIn = diffIn;
086: }
087:
088: /**
089: * @return Returns the diffOut.
090: */
091: public String getDiffOut() {
092: return diffOut;
093: }
094:
095: /**
096: * @param diffOut The diffOut to set.
097: */
098: public void setDiffOut(String diffOut) {
099: this .diffOut = diffOut;
100: }
101:
102: /**
103: * @return Returns the onUpdate.
104: */
105: public String getOnUpdate() {
106: return onUpdate;
107: }
108:
109: /**
110: * @param onUpdate The onUpdate to set.
111: */
112: public void setOnUpdate(String onUpdate) {
113: this .onUpdate = onUpdate;
114: }
115:
116: /**
117: * @return Returns the other.
118: */
119: public String getOther() {
120: return other;
121: }
122:
123: /**
124: * @param other The other to set.
125: */
126: public void setOther(String other) {
127: this .other = other;
128: }
129:
130: /**
131: * @return Returns the readOnly.
132: */
133: public String getReadOnly() {
134: return readOnly;
135: }
136:
137: /**
138: * @param readOnly The readOnly to set.
139: */
140: public void setReadOnly(String readOnly) {
141: this .readOnly = readOnly;
142: }
143:
144: /**
145: * @return Returns the simple.
146: */
147: public String getSimple() {
148: return simple;
149: }
150:
151: /**
152: * @param simple The simple to set.
153: */
154: public void setSimple(String simple) {
155: this .simple = simple;
156: }
157:
158: /**
159: * @return Returns the updateCount.
160: */
161: public int getUpdateCount() {
162: return updateCount;
163: }
164:
165: /**
166: * @param updateCount The updateCount to set.
167: */
168: public void setUpdateCount(int updateCount) {
169: this .updateCount = updateCount;
170: }
171:
172: /**
173: * @return Returns the writeOnly.
174: */
175: public String getWriteOnly() {
176: return writeOnly;
177: }
178:
179: /**
180: * @param writeOnly The writeOnly to set.
181: */
182: public void setWriteOnly(String writeOnly) {
183: this.writeOnly = writeOnly;
184: }
185: }
|