io.ebeaninternal.server.properties.BeanPropertyAccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.properties;
/**
* Provides getter setter methods for beans.
*/
public interface BeanPropertyAccess {
/**
* 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 - 2025 Weber Informatics LLC | Privacy Policy