1 /* Generated By:JavaCC: Do not edit this line. TokenManager.java Version 2.1 */ 2 package net.nutch.analysis; 3 4 /** 5 * An implementation for this interface is generated by 6 * JavaCCParser. The user is free to use any implementation 7 * of their choice. 8 */ 9 10 interface TokenManager { 11 12 /** This gets the next token from the input stream. 13 * A token of kind 0 (<EOF>) should be returned on EOF. 14 */ 15 public Token getNextToken(); 16 17 } 18