1 package org.jacorb.idl.runtime; 2 3 /** This subclass of symbol represents (at least) terminal symbols returned 4 * by the scanner and placed on the parse stack. At present, this 5 * class does nothing more than its super class. 6 * 7 * @see org.jacorb.idl.runtime.int_token 8 * @see org.jacorb.idl.runtime.str_token 9 * @version last updated: 11/25/95 10 * @author Scott Hudson 11 */ 12 13 public class token 14 extends symbol 15 { 16 17 /* Simple constructor -- just delegates to the super class. */ 18 public token(int term_num) 19 { 20 /* super class does all the work */ 21 super(term_num); 22 } 23 }; 24 25 26