All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebeaninternal.server.properties.BeanPropertyInfo Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebeaninternal.server.properties;

/**
 * Provides getter setter and construction methods for beans.
 * 

* This enables the implementation to use standard reflection or * code generation. *

*/ public interface BeanPropertyInfo { /** * Create an EntityBean for this type. */ Object createEntityBean(); /** * Return the getter for a given bean property. */ BeanPropertyGetter getGetter(int position); /** * Return the setter for a given bean property. */ BeanPropertySetter getSetter(int position); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy