Add Period support via CompoundTypePeriod, rename server/reflect to server/properties

This commit is contained in:
rbygrave
2014-11-18 23:09:26 +13:00
parent 98f6e1e6af
commit 07cdb69a5b
27 changed files with 501 additions and 333 deletions
@@ -0,0 +1,17 @@
package com.avaje.ebeaninternal.server.properties;
import com.avaje.ebean.bean.EntityBean;
/**
* The getter implementation for a given bean property.
*/
public interface BeanPropertyGetter {
/**
* Return the value of a given bean property.
*/
public Object get(EntityBean bean);
public Object getIntercept(EntityBean bean);
}