home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 November / Chip_1998-11_cd.bin / tema / Cafe / jfc.bin / CharStream.java < prev    next >
Text File  |  1998-02-26  |  5KB  |  132 lines

  1. /* Generated By:JavaCC: Do not edit this line. CharStream.java Version 0.7pre5 */
  2. /*
  3.  * @(#)CharStream.java    1.2 97/10/15
  4.  * 
  5.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  6.  * 
  7.  * This software is the confidential and proprietary information of Sun
  8.  * Microsystems, Inc. ("Confidential Information").  You shall not
  9.  * disclose such Confidential Information and shall use it only in
  10.  * accordance with the terms of the license agreement you entered into
  11.  * with Sun.
  12.  * 
  13.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  14.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  15.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  16.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  17.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  18.  * THIS SOFTWARE OR ITS DERIVATIVES.
  19.  * 
  20.  */
  21. package com.sun.java.swing.text.html;
  22.  
  23. /**
  24.  * This interface describes a character stream that maintains line and
  25.  * column number positions of the characters.  It also has the capability
  26.  * to backup the stream to some extent.  An implementation of this
  27.  * interface is used in the TokenManager implementation generated by
  28.  * JavaCCParser.
  29.  *
  30.  * All the methods except backup can be implemented in any fashion. backup
  31.  * needs to be implemented correctly for the correct operation of the lexer.
  32.  * Rest of the methods are all used to get information like line number,
  33.  * column number and the String that constitutes a token and are not used
  34.  * by the lexer. Hence their implementation won't affect the generated lexer's
  35.  * operation.
  36.  *
  37.  * @version     1.2 10/15/97
  38.  * @author      Makarand Gokhale
  39.  */
  40. abstract interface CharStream {
  41.  
  42.   /**
  43.    * Returns the next character from the selected input.  The method
  44.    * of selecting the input is the responsibility of the class
  45.    * implementing this interface.  Can throw any java.io.IOException.
  46.    */
  47.   abstract public char readChar() throws java.io.IOException;
  48.  
  49.   /**
  50.    * Returns the column position of the character last read.
  51.    * @deprecated 
  52.    * @see #getEndColumn
  53.    */
  54.   abstract public int getColumn();
  55.  
  56.   /**
  57.    * Returns the line number of the character last read.
  58.    * @deprecated 
  59.    * @see #getEndLine
  60.    */
  61.   abstract public int getLine();
  62.  
  63.   /**
  64.    * Returns the column number of the last character for current token (being
  65.    * matched after the last call to BeginTOken).
  66.    */
  67.   abstract public int getEndColumn();
  68.  
  69.   /**
  70.    * Returns the line number of the last character for current token (being
  71.    * matched after the last call to BeginTOken).
  72.    */
  73.   abstract public int getEndLine();
  74.  
  75.   /**
  76.    * Returns the column number of the first character for current token (being
  77.    * matched after the last call to BeginTOken).
  78.    */
  79.   abstract public int getBeginColumn();
  80.  
  81.   /**
  82.    * Returns the line number of the first character for current token (being
  83.    * matched after the last call to BeginTOken).
  84.    */
  85.   abstract public int getBeginLine();
  86.  
  87.   /**
  88.    * Backs up the input stream by amount steps. Lexer calls this method if it
  89.    * had already read some characters, but could not use them to match a
  90.    * (longer) token. So, they will be used again as the prefix of the next
  91.    * token and it is the implemetation's responsibility to do this right.
  92.    */
  93.   abstract public void backup(int amount);
  94.  
  95.   /**
  96.    * Returns the next character that marks the beginning of the next token.
  97.    * All characters must remain in the buffer between two successive calls
  98.    * to this method to implement backup correctly.
  99.    */
  100.   abstract public char BeginToken() throws java.io.IOException;
  101.  
  102.   /**
  103.    * Returns a string made up of characters from the marked token beginning 
  104.    * to the current buffer position. Implementations have the choice of returning
  105.    * anything that they want to. For example, for efficiency, one might decide
  106.    * to just return null, which is a valid implementation.
  107.    */
  108.   abstract public String GetImage();
  109.  
  110.   /**
  111.    * Returns an array of characters that make up the suffix of length 'len' for
  112.    * the currently matched token. This is used to build up the matched string
  113.    * for use in actions in the case of MORE. A simple and inefficient
  114.    * implementation of this is as follows :
  115.    *
  116.    *   {
  117.    *      String t = GetImage();
  118.    *      return t.substring(t.length() - len, t.length()).toCharArray();
  119.    *   }
  120.    */
  121.   abstract public char[] GetSuffix(int len);
  122.  
  123.   /**
  124.    * The lexer calls this function to indicate that it is done with the stream
  125.    * and hence implementations can free any resources held by this class.
  126.    * Again, the body of this function can be just empty and it will not
  127.    * affect the lexer's operation.
  128.    */
  129.   abstract public void Done();
  130.  
  131. }
  132.