All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.web.servlet.tags.form.AbstractHtmlInputElementTag Maven / Gradle / Ivy

There is a newer version: 5.3.34
Show newest version
/*
 * Copyright 2002-2007 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.web.servlet.tags.form;

import javax.servlet.jsp.JspException;

/**
 * Base class for databinding-aware JSP tags that render HTML form input element.
 *
 * 

Provides a set of properties corresponding to the set of HTML attributes * that are common across form input elements. * * @author Rob Harrop * @author Rick Evans * @since 2.0 */ public abstract class AbstractHtmlInputElementTag extends AbstractHtmlElementTag { /** * The name of the 'onfocus' attribute. */ public static final String ONFOCUS_ATTRIBUTE = "onfocus"; /** * The name of the 'onblur' attribute. */ public static final String ONBLUR_ATTRIBUTE = "onblur"; /** * The name of the 'onchange' attribute. */ public static final String ONCHANGE_ATTRIBUTE = "onchange"; /** * The name of the 'accesskey' attribute. */ public static final String ACCESSKEY_ATTRIBUTE = "accesskey"; /** * The name of the 'disabled' attribute. */ public static final String DISABLED_ATTRIBUTE = "disabled"; /** * The name of the 'readonly' attribute. */ public static final String READONLY_ATTRIBUTE = "readonly"; private String onfocus; private String onblur; private String onchange; private String accesskey; private String disabled; private String readonly; /** * Set the value of the 'onfocus' attribute. * May be a runtime expression. */ public void setOnfocus(String onfocus) { this.onfocus = onfocus; } /** * Get the value of the 'onfocus' attribute. */ protected String getOnfocus() { return this.onfocus; } /** * Set the value of the 'onblur' attribute. * May be a runtime expression. */ public void setOnblur(String onblur) { this.onblur = onblur; } /** * Get the value of the 'onblur' attribute. */ protected String getOnblur() { return this.onblur; } /** * Set the value of the 'onchange' attribute. * May be a runtime expression. */ public void setOnchange(String onchange) { this.onchange = onchange; } /** * Get the value of the 'onchange' attribute. */ protected String getOnchange() { return this.onchange; } /** * Set the value of the 'accesskey' attribute. * May be a runtime expression. */ public void setAccesskey(String accesskey) { this.accesskey = accesskey; } /** * Get the value of the 'accesskey' attribute. */ protected String getAccesskey() { return this.accesskey; } /** * Set the value of the 'disabled' attribute. * May be a runtime expression. */ public void setDisabled(String disabled) { this.disabled = disabled; } /** * Get the value of the 'disabled' attribute. */ protected String getDisabled() { return this.disabled; } /** * Sets the value of the 'readonly' attribute. * May be a runtime expression. * @see #isReadonly() */ public void setReadonly(String readonly) { this.readonly = readonly; } /** * Gets the value of the 'readonly' attribute. * May be a runtime expression. * @see #isReadonly() */ protected String getReadonly() { return this.readonly; } /** * Writes the default attributes configured via this base class to the supplied {@link TagWriter}. * Subclasses should call this when they want the base attribute set to be written to the output. */ protected void writeDefaultAttributes(TagWriter tagWriter) throws JspException { super.writeDefaultAttributes(tagWriter); writeOptionalAttribute(tagWriter, ONFOCUS_ATTRIBUTE, getOnfocus()); writeOptionalAttribute(tagWriter, ONBLUR_ATTRIBUTE, getOnblur()); writeOptionalAttribute(tagWriter, ONCHANGE_ATTRIBUTE, getOnchange()); writeOptionalAttribute(tagWriter, ACCESSKEY_ATTRIBUTE, getAccesskey()); if (isDisabled()) { tagWriter.writeAttribute(DISABLED_ATTRIBUTE, "disabled"); } if (isReadonly()) { writeOptionalAttribute(tagWriter, READONLY_ATTRIBUTE, "readonly"); } } /** * Is the current HTML tag disabled? */ protected boolean isDisabled() { return "true".equals(getDisabled()); } /** * Is the current HTML tag readonly? *

Note: some {@link AbstractHtmlInputElementTag} subclasses (such a those * for checkboxes and radiobuttons) may contain readonly attributes, but are * not affected by them since their values don't change (only their status does.) */ protected boolean isReadonly() { return "true".equals(getReadonly()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy