package com.sun.java_cup.internal.runtime; /** * Defines the Scanner interface, which CUP uses in the default * implementation of lr_parser.scan(). Integration * of scanners implementing Scanner is facilitated. * * @version last updated 23-Jul-1999 * @author David MacMahon */ /* ************************************************* Interface Scanner Declares the next_token() method that should be implemented by scanners. This method is typically called by lr_parser.scan(). ***************************************************/ public interface Scanner { public Symbol next_token() throws java.lang.Exception; }