Example usage for org.apache.commons.beanutils DynaClass interface-usage

List of usage examples for org.apache.commons.beanutils DynaClass interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.beanutils DynaClass interface-usage.

Usage

From source file com.eas.client.reports.JSDynaClass.java

/**
 *
 * @author Andrew
 */
public class JSDynaClass implements DynaClass {

From source file jp.terasoluna.fw.util.BeanUtil_DynaClassImpl01.java

/**
 * {@link BeanUtil}????{@link DynaClass}
 * 
 * @see org.apache.commons.beanutils.DynaClass
 * @see jp.terasoluna.fw.util.BeanUtilTest
 */

From source file org.seasar.struts.action.ActionFormWrapperClass.java

/**
 * ???
 * 
 * @author higa
 * 
 */

From source file com.nfwork.dbfound.json.JSONDynaClass.java

/**
 * @author Andres Almiray
 */
@SuppressWarnings("unchecked")
public class JSONDynaClass implements DynaClass, Serializable {
    private static final long serialVersionUID = 5573622587350265375L;

From source file com.troyhisted.inputfield.field.DynaField.java

/**
 * An {@link InputField} that supports using bean properties to set the value using the correct type.
 *
 * <p>
 * Because a {@link Field} has a generic value type, the type is only used during compilation. In order to
 * persist the type past compilation, it must be specified during the Field construction. The type is then

From source file com.troyhisted.inputfield.util.DynaList.java

/**
 * Specialized list designed for use with BeanUtils.
 *
 * <p>
 * This class alters the behavior of a list in a couple important ways. First, calling <em>get</em> with an index
 * greater than the size of the list will result in <em>null</em> being returned instead of an

From source file org.kordamp.ezmorph.bean.MorphDynaClass.java

/**
 * @author Andres Almiray
 */
public final class MorphDynaClass implements DynaClass, Serializable {
    private static final Comparator dynaPropertyComparator = new Comparator() {
        public int compare(Object a, Object b) {

From source file net.sf.json.JSONDynaClass.java

/**
 * @author Andres Almiray <aalmiray@users.sourceforge.net>
 */
public class JSONDynaClass implements DynaClass, Serializable {
    /**
     * DOCUMENT ME!

From source file org.apache.struts.action.DynaActionFormClass.java

/**
 * <p>Implementation of <code>DynaClass</code> for <code>DynaActionForm</code>
 * classes that allow developers to define ActionForms without having to
 * individually code all of the classes. <strong>NOTE</strong> - This class is
 * only used in the internal implementation of dynamic action form beans.
 * Application developers never need to consult this documentation.</p>

From source file org.oddjob.framework.WrapDynaClass.java

/**
 * <p>Implementation of <code>DynaClass</code> for DynaBeans that wrap
 * standard JavaBean instances.</p>
 * <p>
 * Based on the BeanUtils version but Serializable, and also supports
 * mapped types.