1: /** 2: @author Frank M. Carrano, Timothy M. Henry 3: @version 5.0 4: */ 5: public interface Callable extends Nameable 6: { 7: public void come(String petName); 8: } // end Callable