View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Interface for Objects witch use info.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_InfoGetter
9   {
10  
11      String getInfo();
12  
13      String getInfoTitle();
14  }