List of usage examples for java.beans SimpleBeanInfo subclass-usage
From source file ColorsBeanInfo.java
public class ColorsBeanInfo extends SimpleBeanInfo { public PropertyDescriptor[] getPropertyDescriptors() { try { PropertyDescriptor rectangular = new PropertyDescriptor("rectangular", Colors.class); PropertyDescriptor pd[] = { rectangular }; return pd;
From source file FontSelectorBeanBeanInfo.java
public class FontSelectorBeanBeanInfo extends SimpleBeanInfo { public Image getIcon(int iconKind) { if (iconKind == ICON_COLOR_16x16) { return loadImage("FontSelectorBeanIconColor16.gif"); } else {
From source file org.jasig.cas.client.validation.Cas20ProxyTicketValidatorBeanInfo.java
/**
* BeanInfo support for using this class with Spring. Configures a ProxyListPropertyEditor to be used with the
* Cas20ProxyTicketValidator when Spring is used to configure the CAS client.
*
* @author Scott Battaglia
* @version $Revision$ $Date$
From source file org.mule.endpoint.URIBuilderBeanInfo.java
/** * Required to resolve the overload of URIBuilder.setPort() during bean assembly */ public class URIBuilderBeanInfo extends SimpleBeanInfo { protected transient final Log logger = LogFactory.getLog(URIBuilderBeanInfo.class);
From source file org.displaytag.tags.CaptionTagBeanInfo.java
/** * Needed to make the "class" tag attribute working. * @author Fabrizio Giustina * @version $Revision: 1081 $ ($Author: fgiust $) */ public class CaptionTagBeanInfo extends SimpleBeanInfo {
From source file org.displaytag.tags.el.ELColumnTagBeanInfo.java
/**
* BeanInfo descriptor for the <code>ELColumnTag</code> class. Unevaluated EL expression has to be kept separately
* from the evaluated value, since the JSP compiler can choose to reuse different tag instances if they received the
* same original attribute values, and the JSP compiler can choose to not re-call the setter methods.
* @author Fabrizio Giustina
* @version $Revision: 1081 $ ($Author: fgiust $)
From source file org.displaytag.tags.el.ELTableTagBeanInfo.java
/**
* BeanInfo descriptor for the <code>ELTableTag</code> class. Unevaluated EL expression has to be kept separately from
* the evaluated value, since the JSP compiler can choose to reuse different tag instances if they received the same
* original attribute values, and the JSP compiler can choose to not re-call the setter methods.
* @author Fabrizio Giustina
* @version $Revision: 1125 $ ($Author: fgiust $)
From source file info.magnolia.cms.taglibs.util.TableTagBeanInfo.java
/** * Bean info, needed for the "class" attribute. * @author Fabrizio Giustina * @version $Revision: 2985 $ ($Author: fgiust $) */ public class TableTagBeanInfo extends SimpleBeanInfo {
From source file info.magnolia.cms.taglibs.util.ImgTagBeanInfo.java
/** * Bean info, needed for the "class" attribute. * @author Fabrizio Giustina * @version $Revision: 2985 $ ($Author: fgiust $) */ public class ImgTagBeanInfo extends SimpleBeanInfo {
From source file org.displaytag.tags.TableTagBeanInfo.java
/**
* Beaninfo class for tableTag. Needed to make the "class" tag attribute working and to handle the swith between
* setName() and setNameString() setters for the name attribute.
* @author Fabrizio Giustina
* @version $Revision: 1125 $ ($Author: fgiust $)
*/