// Program: 4033 // Author: Manuel J. A. Eugster ( e0126312@student.tuwien.ac.at ) // FileId: $Id: Token.java,v 1.1 2002/01/14 17:28:09 heder Exp $ package Wider; // INTERFACE: // Defines the needed tokens and constants for scanning // and parsing. // public interface Token { public static final int EOL = -1; // End of line public static final int T_NUM = 32; // Integer numbers public static final int T_BRO = 40; // Bracket open ( public static final int T_BRC = 41; // Bracket close) public static final int T_SER = 43; // Serial + public static final int T_PAR = 47; // Parallel / public static final int MAX_RES = 15; // Max. resistor count }