Added file loading and displaying of images in tabs

This commit is contained in:
2017-06-09 15:49:26 +02:00
parent a991a23339
commit 3958c68fd0
24 changed files with 590 additions and 177 deletions
+15
View File
@@ -0,0 +1,15 @@
package com.imegumii;
/**
* Created by kenny on 9-6-2017.
*/
public class Importable {
public static enum Type {DFA, NDFA, REGEX, ERROR};
public Type type;
public Importable(Type t)
{
this.type = t;
}
}