1   package org.apache.velocity.test.misc;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *   http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.    
20   */
21  
22  public class UberspectorTestObject
23  {
24      private String regular;
25      private String premium;
26  
27      private boolean regularBool;
28      private boolean premiumBool;
29  
30      private String ambigous;
31  
32      /**
33       * @return the premium
34       */
35      public String getpremium()
36      {
37          return premium;
38      }
39  
40      /**
41       * @param premium the premium to set
42       */
43      public void setpremium(String premium)
44      {
45          this.premium = premium;
46      }
47  
48      /**
49       * @return the premiumBool
50       */
51      public boolean ispremiumBool()
52      {
53          return premiumBool;
54      }
55  
56      /**
57       * @param premiumBool the premiumBool to set
58       */
59      public void setpremiumBool(boolean premiumBool)
60      {
61          this.premiumBool = premiumBool;
62      }
63  
64      /**
65       * @return the regular
66       */
67      public String getRegular()
68      {
69          return regular;
70      }
71  
72      /**
73       * @param regular the regular to set
74       */
75      public void setRegular(String regular)
76      {
77          this.regular = regular;
78      }
79  
80      /**
81       * @return the regularBool
82       */
83      public boolean isRegularBool()
84      {
85          return regularBool;
86      }
87  
88      /**
89       * @param regularBool the regularBool to set
90       */
91      public void setRegularBool(boolean regularBool)
92      {
93          this.regularBool = regularBool;
94      }
95  
96      /**
97       * @return the ambigous
98       */
99      public String getAmbigous()
100     {
101         return ambigous;
102     }
103 
104     /**
105      * @param ambigous the ambigous to set
106      */
107     public void setAmbigous(String ambigous)
108     {
109         this.ambigous = ambigous;
110     }
111 
112     /**
113      * @param ambigous the ambigous to set
114      */
115     public void setAmbigous(StringBuffer ambigous)
116     {
117         this.ambigous = ambigous.toString();
118     }
119 }