View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Generic Abstraction of a component witch own text.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_TextOwner
9   {
10      void setText(
11              String s);
12  
13      String getText();
14  
15  }