All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java_cup.runtime.Scanner Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 1.2.0
Show newest version
package java_cup.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().  End-of-file can be
  indicated either by returning
  new Symbol(lr_parser.EOF_sym()) or
  null.
 ***************************************************/
public interface Scanner {
    /** Return the next token, or null on end-of-file. */
    public Symbol next_token() throws java.lang.Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy