View Javadoc

1   package com.loribel.commons.abstraction;
2   
3   /***
4    * Abstraction.  
5    *
6    * @author Gregory Borelli
7    */
8   public interface GB_NumberUnitSet
9           extends
10              GB_NumberUnit
11  {
12      void setUnit(
13              String a_unit);
14  
15      void setValue(
16              Number a_value);
17  }