List of usage examples for java.beans BeanInfo interface-usage
From source file org.psnively.scala.beans.ScalaBeanInfo.java
/**
* Implementation of {@link BeanInfo} for Scala classes. Decorates a standard {@link
* BeanInfo} object by including Scala setter methods (ending in {@code _$eq} in the
* collection of {@linkplain #getPropertyDescriptors() property descriptors}.
*
* @author Arjen Poutsma
From source file org.springframework.scala.beans.ScalaBeanInfo.java
/**
* Implementation of {@link BeanInfo} for Scala classes. Decorates a standard {@link
* BeanInfo} object by including Scala setter methods (ending in {@code _$eq} in the
* collection of {@linkplain #getPropertyDescriptors() property descriptors}.
*
* @author Arjen Poutsma
From source file org.springframework.beans.ExtendedBeanInfo.java
/**
* Decorator for a standard {@link BeanInfo} object, e.g. as created by
* {@link Introspector#getBeanInfo(Class)}, designed to discover and register static
* and/or non-void returning setter methods. For example:
* <pre class="code">
* public class Bean {
From source file net.yasion.common.core.bean.wrapper.ExtendedBeanInfo.java
/**
* Decorator for a standard {@link BeanInfo} object, e.g. as created by {@link Introspector#getBeanInfo(Class)}, designed to discover and register static and/or non-void returning setter methods. For example:
*
* <pre class="code">
* public class Bean {
* private Foo foo;