start project stucture

This commit is contained in:
Willem 2015-09-08 22:39:28 +02:00
parent d781fe362a
commit dbd8a2e8fd
7 changed files with 496 additions and 1 deletions

View file

@ -0,0 +1,8 @@
package net.forwardfire.unitxc.converter;
public interface UnitXConverter {
double convert(double value,String fromTypeId,String toTypeId);
double convert(double value/*,UnitXType fromType,UnitXType toType*/);
}

View file

@ -0,0 +1,8 @@
/**
*
*/
/**
* @author willemc
*
*/
package net.forwardfire.unitxc.converter;