/* * 03/21/2010 * * Copyright (C) 2010 Robert Futrell * robert_futrell at users.sourceforge.net * http://fifesoft.com/rsyntaxtextarea * * This library is distributed under a modified BSD license. See the included * RSTALanguageSupport.License.txt file for details. */ package org.fife.rsta.ac.java.rjc.lexer; /** * A lexical token in a Java file. * * @author Robert Futrell * @version 0.1 */ public interface Token extends TokenTypes { public int getColumn(); public String getLexeme(); public int getLength(); public int getLine(); public int getOffset(); public int getType(); public boolean isBasicType(); public boolean isIdentifier(); public boolean isInvalid(); public boolean isOperator(); public boolean isType(int type); }