All Packages Class Hierarchy This Package Previous Next Index
Class pinball.VideoLog
java.lang.Object
|
+----pinball.VideoLog
- public class VideoLog
- extends Object
Used to access the video log file.
-
ballNumber
- Ball number for log file.
-
in
- Input file.
-
login
- Input file.
-
logout
- Output file.
-
logTimeDate
- Time & Date of the log file.
-
out
- Output file.
-
remainder
- The remainder part of the log file.
-
VideoLog()
- Create a log file.
-
VideoLog(String)
-
Create a log file with the specified first log file name.
-
ballNumber()
- Set the ball number.
-
getNext()
- Get the name log file name
-
getReadNext()
-
Get the next log file to read from.
-
getReadNext(String)
-
Get the next log file to read from.
-
getWriteNext(String)
- Get the next log file to write to.
out
private FileOutputStream out
- Output file.
logout
private ObjectOutputStream logout
- Output file.
in
private FileInputStream in
- Input file.
login
private ObjectInputStream login
- Input file.
logTimeDate
private String logTimeDate
- Time & Date of the log file.
ballNumber
private int ballNumber
- Ball number for log file.
remainder
private String remainder
- The remainder part of the log file.
VideoLog
public VideoLog()
- Create a log file.
VideoLog
public VideoLog(String start)
- Create a log file with the specified first log file name.
- Parameters:
- start - the first log file.
getReadNext
public ObjectInputStream getReadNext(String log) throws IOException
- Get the next log file to read from.
- Parameters:
- log - the next log file.
getReadNext
public ObjectInputStream getReadNext() throws IOException
- Get the next log file to read from.
- Parameters:
- log - the next log file.
ballNumber
private String ballNumber()
- Set the ball number.
getNext
private String getNext()
- Get the name log file name
getWriteNext
public ObjectOutputStream getWriteNext(String log) throws IOException
- Get the next log file to write to.
- Parameters:
- log - the next log file.
All Packages Class Hierarchy This Package Previous Next Index