From 8f84c00978dc05007873a9fe1de6a18511dc3cf8 Mon Sep 17 00:00:00 2001 From: Jan Tuomi Date: Tue, 28 Jun 2016 21:09:43 +0300 Subject: Restructure project for use with maven --- main/core/tokenizer/token/ArgumentInfo.java | 49 ----------------------------- 1 file changed, 49 deletions(-) delete mode 100644 main/core/tokenizer/token/ArgumentInfo.java (limited to 'main/core/tokenizer/token/ArgumentInfo.java') diff --git a/main/core/tokenizer/token/ArgumentInfo.java b/main/core/tokenizer/token/ArgumentInfo.java deleted file mode 100644 index b062a04..0000000 --- a/main/core/tokenizer/token/ArgumentInfo.java +++ /dev/null @@ -1,49 +0,0 @@ -package com.jantuomi.interpreter.main.core.tokenizer.token; - -/** - * Created by jan on 15.6.2016. - */ -public class ArgumentInfo { - private int count = 0; - private boolean isVarargs = false; - - public Token.Type getOptionalArgument() { - return optionalArgument; - } - - public void setOptionalArgument(Token.Type optionalArgument) { - this.optionalArgument = optionalArgument; - } - - private Token.Type optionalArgument = null; - - public Token.Type getTerminator() { - return terminator; - } - - public void setTerminator(Token.Type terminator) { - this.terminator = terminator; - } - - private Token.Type terminator; - - public ArgumentInfo(int count) { - this.count = count; - } - - public ArgumentInfo() { - - } - - public void setVariable(boolean value) { - this.isVarargs = value; - } - - public boolean getVarargs() { - return isVarargs; - } - - public int getCount() { - return count; - } -} -- cgit v1.3