Initial commit

This commit is contained in:
Jonas Neugebauer
2021-04-10 18:05:52 +02:00
commit bdfd32c24a
6 changed files with 659 additions and 0 deletions

35
Token.java Normal file
View File

@@ -0,0 +1,35 @@
public class Token {
private String type;
private String token;
public Token(String pType) {
type = pType;
token = null;
}
public Token(String pType, String pToken) {
type = pType;
token = pToken;
}
public String getType() {
return type;
}
public void setType(String pType) {
type = pType;
}
public String getToken() {
return token;
}
public void setToken(String pToken) {
token = pToken;
}
}