1 package jodd.bean; 2 3 /** 4 * Iterates beans properties. May be use as bean modifier. 5 */ 6 public interface PropertyCallback { 7 8 9 /** 10 * Method that will be called-back for each beans property. 11 * 12 * @param o object instance 13 * @param name property name (without 'get'/'set') 14 */ 15 public void onProperty(Object o, String name); 16 17 } 18