View Javadoc

1   // Copyright 2006 Daniel Gredler
2   //
3   // Licensed under the Apache License, Version 2.0 (the "License");
4   // you may not use this file except in compliance with the License.
5   // You may obtain a copy of the License at
6   //
7   //     http://www.apache.org/licenses/LICENSE-2.0
8   //
9   // 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 net.sf.beanform.binding;
16  
17  import org.apache.hivemind.Location;
18  import org.apache.tapestry.binding.AbstractBinding;
19  import org.apache.tapestry.coerce.ValueConverter;
20  
21  /***
22   * Binding for boolean values. When combined with the Tapestry-Prop binding,
23   * this allows us to avoid OGNL bindings completely.
24   *
25   * @author Daniel Gredler
26   */
27  public class BooleanBinding extends AbstractBinding {
28  
29      private boolean value;
30  
31      protected BooleanBinding( String description, ValueConverter converter, Location location, boolean value ) {
32          super( description, converter, location );
33          this.value = value;
34      }
35  
36      public Object getObject() {
37          return this.value;
38      }
39  
40      @Override
41      public String toString() {
42          return "BooleanBinding[" + this.value + "]";
43      }
44  
45  }