GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / web / org / codehaus / groovy / grails / web / taglib / jsp / JspCheckboxTag.java
blobc9e88ba2d010c0a8c10a12c246473aad1a96359c
1 /* Copyright 2004-2005 the original author or authors.
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
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
15 package org.codehaus.groovy.grails.web.taglib.jsp;
17 /**
18 * @author Graeme Rocher
19 * @since 28-Feb-2006
21 public class JspCheckboxTag extends JspInvokeGrailsTagLibTag {
22 private static final String TAG_NAME = "checkBox";
24 private String name;
25 private String value;
27 public JspCheckboxTag() {
28 setTagName(TAG_NAME);
31 public String getName() {
32 return name;
35 public void setName(String name) {
36 this.name = name;
39 public String getValue() {
40 return value;
43 public void setValue(String value) {
44 this.value = value;