start project stucture
This commit is contained in:
parent
d781fe362a
commit
dbd8a2e8fd
7 changed files with 496 additions and 1 deletions
9
ff-unitxc-converter/pom.xml
Normal file
9
ff-unitxc-converter/pom.xml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>net.forwardfire.unitxc</groupId>
|
||||
<artifactId>ff-unitxc</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
</parent>
|
||||
<artifactId>ff-unitxc-converter</artifactId>
|
||||
</project>
|
||||
|
|
@ -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*/);
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* @author willemc
|
||||
*
|
||||
*/
|
||||
package net.forwardfire.unitxc.converter;
|
||||
Loading…
Add table
Add a link
Reference in a new issue