src/ogdl/parser/ParserHandlerBase.java
author viric@llimona
Wed, 17 Jan 2007 19:14:26 +0100
changeset 12 3932322b7d83
parent 0 8bc2bfcd1bd8
permissions -rw-r--r--
Half-commit. Not finished.

/* OGDL Microedition.
 * (C) Rolf Veen, 2006.
 * License: see http://ogdl.org.
 */

package ogdl.parser;


/** Generic parser event API.

    author: Rolf Veen
    date: Jun 2002
 */

public class ParserHandlerBase implements IParserHandler
{
    public boolean event(int i){return true;}
    public boolean event(int i, int j){return true;}
    public boolean event(int i, String s){return true;}
    public boolean event(int i, int j, String s){return true;}
    public boolean event(int i, int j, Object s){return true;}
    public boolean error(Exception e, int line){return true;}
}