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

io.ebeaninternal.server.properties.BeanPropertyAccess Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
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 - 2024 Weber Informatics LLC | Privacy Policy