View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Abstraction of object that have read value.
5    *
6    * @author Gregory Borelli
7    */
8   public interface GB_ValueStringOwner
9   {
10      /***
11       * Get the value.
12       */
13      String getValue();
14  
15  }