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

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

Introduction

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

Usage

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

/**
 *
 * @author Andrew
 */
public class JSDynaBean implements DynaBean {

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

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

From source file org.apache.struts.validator.DynaValidatorActionForm.java

/**
 * <p>This class extends <strong>DynaValidatorForm</strong> and provides
 * basic field validation based on an XML file.  The key passed into the
 * validator is the action element's 'path' attribute from the
 * struts-config.xml which should match the form element's name attribute
 * in the validation.xml.</p>

From source file agiato.cassandra.data.SimpleDynaBean.java

/**
 * Simple dynamic bean
 * @author pranab
 *
 */
public class SimpleDynaBean implements DynaBean {

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 com.nfwork.dbfound.json.JSONDynaBean.java

/**
 * @author Andres Almiray
 */
@SuppressWarnings("unchecked")
public class JSONDynaBean implements DynaBean, Serializable {
    private static final long serialVersionUID = -1088560023822108485L;

From source file nl.strohalm.cyclos.utils.binding.MapBean.java

/**
 * Map class implementing the DynaBean interface
 * @author luis
 */
public class MapBean extends HashMap<String, Object> implements DynaBean {

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

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

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

/**
 * <p>Implementation of <code>DynaBean</code> that wraps a standard JavaBean
 * instance, so that DynaBean APIs can be used to access its properties.</p>
 *
 * <p>
 * The most common use cases for this class involve wrapping an existing java bean.