KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > polyglot > lex > Literal


1 package polyglot.lex;
2
3 import polyglot.util.Position;
4
5 /** A token class for literals. */
6 public abstract class Literal extends Token
7 {
8   public Literal(Position position, int sym) { super(position, sym); }
9 }
10
Popular Tags