GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / web / org / codehaus / groovy / grails / web / taglib / jsp / JspSelectTag.java
blob69518d9d17ec7f9f44ee0ca57c9279e9e8195b61
1 /* Copyright 2004-2005 the original author or authors.
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.
15 package org.codehaus.groovy.grails.web.taglib.jsp;
17 /**
18 * @author Graeme Rocher
19 * @since 28-Feb-2006
21 public class JspSelectTag extends JspInvokeGrailsTagLibTag {
22 private static final String TAG_NAME = "select";
24 private String name;
25 private String from;
26 private String optionKey;
27 private String optionValue;
29 public JspSelectTag() {
30 setTagName(TAG_NAME);
33 public String getName() {
34 return name;
37 public void setName(String name) {
38 this.name = name;
41 public String getFrom() {
42 return from;
45 public void setFrom(String from) {
46 this.from = from;
49 public String getOptionKey() {
50 return optionKey;
53 public void setOptionKey(String optionKey) {
54 this.optionKey = optionKey;
57 public String getOptionValue() {
58 return optionValue;
61 public void setOptionValue(String optionValue) {
62 this.optionValue = optionValue;