/* SCCS - @(#)YYnode.java 1.2 - 02/28/99 - 12:39:30 */ /* * Copyright (c) 1996 Dennis Heimbigner. dennis@cs.colorado.edu */ package pp.src.jbf; import java.lang.*; public abstract class YYnode { public int tokentype; public YYnode(int ttype) { tokentype = ttype; } public abstract boolean istoken(); public void settokentype(int k) {tokentype = k;} public int tokentype() {return tokentype;} public abstract String toString(); };