1 package classUtils.pack.util; 2 3 /** 4 * Instances of this class can setup existing objects 5 * 6 * @author C. Sadun 7 * @version 1.0 8 */ 9 public interface Setup { 10 11 /** 12 * Sets up the passed object 13 * 14 * @param obj the object to be set up. 15 */ 16 public void setup(Object obj); 17 18 }