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
+3 -1
View File
@@ -8,7 +8,7 @@ import java.util.TreeSet;
/**
* Created by kenny on 2-5-2017.
*/
public class RegExp {
public class RegExp extends Importable{
public enum Operator { PLUS, STER, OF, PUNT, EEN}
@@ -27,6 +27,7 @@ public class RegExp {
public RegExp()
{
super(Type.REGEX);
operator = Operator.EEN;
characters = "";
links = null;
@@ -34,6 +35,7 @@ public class RegExp {
}
public RegExp(String chars){
super(Type.REGEX);
operator = Operator.EEN;
characters = chars;
links = null;