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_ValueOwnerSet
9           extends
10              GB_ValueOwner
11  {
12  
13      /***
14       * Set the value.
15       *
16       * @param a_value Object -
17       */
18      void setValue(
19              Object a_value);
20  
21  }