1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Interface for Object witch can updated with info. 5 * 6 * @author Grégory Borelli 7 */ 8 public interface GB_InfoSetter 9 { 10 void setInfo( 11 String a_info); 12 13 void setInfoTitle( 14 String a_title); 15 }