public class HtmlTagSupportBeanInfo
extends java.beans.SimpleBeanInfo
Describes the properties supported by the HtmlTagSupport class which is the parent of all the HTML Form/Input tags in Stripes. Exists to provide some flexibility in the naming of methods and primarily to provide support for the "class" tag attribute in JSP containers that demand a javabean compliant getter and setter method. Since getClass() is rather special in Java and cannot (and should not) be overridden, containers may not like calling setClass(String) without there being a corresponding getClass():String method. So the PropertyDescriptor for the "class" property specifies the methods getCssClass() and setCssClass.
Constructor and Description |
---|
HtmlTagSupportBeanInfo() |
Modifier and Type | Method and Description |
---|---|
java.beans.PropertyDescriptor[] |
getPropertyDescriptors()
Generates a simple set of PropertyDescriptors for the HtmlTagSupport class.
|
public java.beans.PropertyDescriptor[] getPropertyDescriptors()
getPropertyDescriptors
in interface java.beans.BeanInfo
getPropertyDescriptors
in class java.beans.SimpleBeanInfo
? Copyright 2005-2006, Stripes Development Team.