Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.jext.dawn.io: Javadoc index of package org.jext.dawn.io.


Package Samples:

org.jext.dawn.io

Classes:

OpenOutputFunction: Opens a file from the HD to write in it. The opened file is designed by an ID. Usage: file ID openForOutput Where file and ID are both string. First one is the path to the file - which can be either absolute, either relative -, and the second one is the file ID.
OpenInputFunction: Opens a file from the HD. The opened file is designed by an ID. Usage: file ID openForInput Where file and ID are both string. First one is the path to the file - which can be either absolute, either relative -, and the second one is the file ID.
FileManager: Manages the files for the whole IO package. This class provides functions to open/close files and also to read/write into them. Each opened file is stored as a property in DawnParser . Each file is designed by a given ID.
LineSeparatorFunction: As each OS has a different line separator (\n, \r\n, etc...), this function puts the OS one on the stack. Usage: lineSeparator
ReadLineFunction: Reads a line from an opened file, designed by its ID. Usage: ID readLine
IsAvailableFunction: Checks if a specified file is still available. Usage: ID isFileAvailable
WriteLineFunction: Writes a line to a file, designed by its ID. Usage: string ID writeLine
PrintlnFunction: Prints a string, adding a line feed at the end. Usage: string println
WriteFunction: Writes a string to a file, designed by its ID. Usage: string ID write
ReadFunction: Reads from an opened file, designed by its ID. Usage: ID read
FileSizeFunction: Returns the size of a given file. Usage: file fileSize
ExistFunction: Check if a given file exists on HD. Usage: file exists
CloseFileFunction: Closes a file designed by its ID. Usage: ID closeFile
PrintFunction: Prints a string Usage: string print
InputLineFunction: Inputs a line. Usage: inputLine

Home | Contact Us | Privacy Policy | Terms of Service