com.obdobion.argument.directive.DirectiveCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of argument Show documentation
Show all versions of argument Show documentation
A command line parser for Java
package com.obdobion.argument.directive;
import java.io.IOException;
import java.text.ParseException;
import com.obdobion.argument.input.Token;
/**
* @author Chris DeGreef
*
*/
public abstract class DirectiveCommand
{
final protected String data;
public DirectiveCommand(String _data)
{
this.data = _data;
}
abstract Token replaceToken (Token[] tokens, int replacingFromTokenIndex, int replaceToTokenIndex)
throws ParseException, IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy