01: package org.jacorb.idl.runtime;
02:
03: /** This subclass of symbol represents (at least) terminal symbols returned
04: * by the scanner and placed on the parse stack. At present, this
05: * class does nothing more than its super class.
06: *
07: * @see org.jacorb.idl.runtime.int_token
08: * @see org.jacorb.idl.runtime.str_token
09: * @version last updated: 11/25/95
10: * @author Scott Hudson
11: */
12:
13: public class token extends symbol {
14:
15: /* Simple constructor -- just delegates to the super class. */
16: public token(int term_num) {
17: /* super class does all the work */
18: super(term_num);
19: }
20: };
|