JOE/src/com/tofvesson/joe/Dataset.java
Gabriel Tofvesson 15027ce547 Initial commit
2016-11-15 08:00:33 +01:00

15 lines
257 B
Java

package com.tofvesson.joe;
import java.io.File;
import java.util.HashMap;
public class Dataset<T> {
HashMap<String, T> data = new HashMap<>();
private final Type type;
public Dataset(Type type, File input){
this.type = type;
}
}