All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.obdobion.argument.DirectiveCommand Maven / Gradle / Ivy

There is a newer version: 4.3.8
Show newest version
package com.obdobion.argument;

import java.io.IOException;
import java.text.ParseException;

/**
 * @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