001: package org.apache.velocity.test.misc;
002:
003: /*
004: * Licensed to the Apache Software Foundation (ASF) under one
005: * or more contributor license agreements. See the NOTICE file
006: * distributed with this work for additional information
007: * regarding copyright ownership. The ASF licenses this file
008: * to you under the Apache License, Version 2.0 (the
009: * "License"); you may not use this file except in compliance
010: * with the License. You may obtain a copy of the License at
011: *
012: * http://www.apache.org/licenses/LICENSE-2.0
013: *
014: * Unless required by applicable law or agreed to in writing,
015: * software distributed under the License is distributed on an
016: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
017: * KIND, either express or implied. See the License for the
018: * specific language governing permissions and limitations
019: * under the License.
020: */
021:
022: public class UberspectorTestObject {
023: private String regular;
024: private String premium;
025:
026: private boolean regularBool;
027: private boolean premiumBool;
028:
029: private String ambigous;
030:
031: /**
032: * @return the premium
033: */
034: public String getpremium() {
035: return premium;
036: }
037:
038: /**
039: * @param premium the premium to set
040: */
041: public void setpremium(String premium) {
042: this .premium = premium;
043: }
044:
045: /**
046: * @return the premiumBool
047: */
048: public boolean ispremiumBool() {
049: return premiumBool;
050: }
051:
052: /**
053: * @param premiumBool the premiumBool to set
054: */
055: public void setpremiumBool(boolean premiumBool) {
056: this .premiumBool = premiumBool;
057: }
058:
059: /**
060: * @return the regular
061: */
062: public String getRegular() {
063: return regular;
064: }
065:
066: /**
067: * @param regular the regular to set
068: */
069: public void setRegular(String regular) {
070: this .regular = regular;
071: }
072:
073: /**
074: * @return the regularBool
075: */
076: public boolean isRegularBool() {
077: return regularBool;
078: }
079:
080: /**
081: * @param regularBool the regularBool to set
082: */
083: public void setRegularBool(boolean regularBool) {
084: this .regularBool = regularBool;
085: }
086:
087: /**
088: * @return the ambigous
089: */
090: public String getAmbigous() {
091: return ambigous;
092: }
093:
094: /**
095: * @param ambigous the ambigous to set
096: */
097: public void setAmbigous(String ambigous) {
098: this .ambigous = ambigous;
099: }
100:
101: /**
102: * @param ambigous the ambigous to set
103: */
104: public void setAmbigous(StringBuffer ambigous) {
105: this.ambigous = ambigous.toString();
106: }
107: }
|