| java.lang.Object jsint.InputPort
InputPort | public class InputPort implements java.util.Enumeration(Code) | | InputPort is to Scheme as InputStream is to Java.
author: Peter Norvig, Copyright 1998, peter@norvig.com, license author: subsequently modified by Jscheme project members author: licensed under zlib licence (see license.txt) |
EOF | final public static Object EOF(Code) | | The distinguished end of file marking object. *
|
brlsMode | public boolean brlsMode(Code) | | |
defaultBrlsMode | final public static boolean defaultBrlsMode(Code) | | |
isPushedChar | boolean isPushedChar(Code) | | |
pushedChar | int pushedChar(Code) | | |
InputPort | public InputPort(Reader in, boolean keepComments)(Code) | | |
InputPort | public InputPort(InputStream in)(Code) | | Construct an InputPort from an InputStream. *
|
InputPort | public InputPort(Reader in)(Code) | | Construct an InputPort from a Reader. *
|
close | public Object close()(Code) | | Close the port. Return TRUE if ok. *
|
getLineNumber | public int getLineNumber()(Code) | | |
hasMoreElements | public boolean hasMoreElements()(Code) | | |
peekChar | public synchronized Object peekChar()(Code) | | Peek at and return the next Scheme character (or EOF).
However, don't consume the character. *
|
readChar | public synchronized Object readChar()(Code) | | Read and return a Scheme character or EOF. *
|
|
|