1 package com.loribel.commons.abstraction; 2 3 /*** 4 * Abstraction. 5 * 6 * @author Gregory Borelli 7 */ 8 public interface GB_NumberUnit 9 { 10 String getUnit(); 11 12 Number getValue(); 13 }