jass.utils
Class FileInput

java.lang.Object
  extended by jass.utils.FileInput

public class FileInput
extends java.lang.Object


Field Summary
protected  java.lang.String dirPath
           
protected  boolean eof
           
protected  boolean fileFound
           
protected  java.lang.String fileName
           
protected  java.lang.String fullLine
           
protected  java.lang.String fullLineT
           
protected  java.io.BufferedReader input
           
protected  boolean inputType
           
protected  java.lang.String pathName
           
protected  boolean testFullLine
           
protected  boolean testFullLineT
           
 
Constructor Summary
protected FileInput()
           
  FileInput(java.lang.String pathName)
           
 
Method Summary
 void close()
           
protected  void enterLine()
           
 boolean eof()
           
 boolean fileFound()
           
 java.lang.String getDirPath()
           
 java.lang.String getFileName()
           
 java.lang.String getPathName()
           
protected  char nextChar()
           
protected  java.lang.String nextWord()
           
 boolean readBoolean()
           
 char readChar()
           
 Complex readComplex()
           
 double readDouble()
           
 float readFloat()
           
 int readInt()
           
 java.lang.String readLine()
           
protected  java.lang.String readLineL()
           
 long readLong()
           
 java.lang.String readWord()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fileName

protected java.lang.String fileName

pathName

protected java.lang.String pathName

dirPath

protected java.lang.String dirPath

fullLine

protected java.lang.String fullLine

fullLineT

protected java.lang.String fullLineT

input

protected java.io.BufferedReader input

testFullLine

protected boolean testFullLine

testFullLineT

protected boolean testFullLineT

eof

protected boolean eof

fileFound

protected boolean fileFound

inputType

protected boolean inputType
Constructor Detail

FileInput

protected FileInput()

FileInput

public FileInput(java.lang.String pathName)
Method Detail

getPathName

public java.lang.String getPathName()

getFileName

public java.lang.String getFileName()

getDirPath

public java.lang.String getDirPath()

readDouble

public final double readDouble()

readFloat

public final float readFloat()

readInt

public final int readInt()

readLong

public final long readLong()

readComplex

public final Complex readComplex()

readBoolean

public final boolean readBoolean()

readWord

public final java.lang.String readWord()

readLine

public final java.lang.String readLine()

readLineL

protected final java.lang.String readLineL()

readChar

public final char readChar()

close

public final void close()

eof

public boolean eof()

fileFound

public boolean fileFound()

enterLine

protected final void enterLine()

nextWord

protected final java.lang.String nextWord()

nextChar

protected final char nextChar()