This commit is contained in:
Yorick Rommers
2017-06-10 00:21:48 +02:00
23 changed files with 1165 additions and 23 deletions
+3 -1
View File
@@ -8,7 +8,7 @@ import java.util.*;
/**
* 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;