View Javadoc
1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Abstraction of object that have read-write value.
5    *
6    * @author Grégory Borelli
7    */
8   public interface GB_ValueStringOwnerSet
9           extends
10              GB_ValueStringOwner
11  {
12      /***
13       * Set the value.
14       */
15      void setValue(
16              String a_value);
17  
18  }