home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161a.iso / handson / files / copyjava.exe / com / sun / java / swing / text / html / CharStream.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-02-26  |  568 b   |  32 lines

  1. package com.sun.java.swing.text.html;
  2.  
  3. import java.io.IOException;
  4.  
  5. interface CharStream {
  6.    char readChar() throws IOException;
  7.  
  8.    /** @deprecated */
  9.    int getColumn();
  10.  
  11.    /** @deprecated */
  12.    int getLine();
  13.  
  14.    int getEndColumn();
  15.  
  16.    int getEndLine();
  17.  
  18.    int getBeginColumn();
  19.  
  20.    int getBeginLine();
  21.  
  22.    void backup(int var1);
  23.  
  24.    char BeginToken() throws IOException;
  25.  
  26.    String GetImage();
  27.  
  28.    char[] GetSuffix(int var1);
  29.  
  30.    void Done();
  31. }
  32.