* 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.
public interface Token extends TokenTypes {
public String getLexeme();
public boolean isBasicType();
public boolean isIdentifier();
public boolean isInvalid();
public boolean isOperator();
public boolean isType(int type);