lejos.nxt.remote
Class FileInfo

java.lang.Object
  extended by lejos.nxt.remote.FileInfo

public class FileInfo
extends Object

Structure that gives information about a leJOS NXJ file.


Field Summary
 byte fileHandle
          The handle for accessing the file.
 String fileName
          The name of the file - up to 20 characters.
 int fileSize
          The size of the file in bytes.
 int startPage
          The start page of the file in flash memory.
 byte status
          The status of the file - not used.
 
Constructor Summary
FileInfo(String fileName)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fileName

public String fileName
The name of the file - up to 20 characters.


fileHandle

public byte fileHandle
The handle for accessing the file.


fileSize

public int fileSize
The size of the file in bytes.


status

public byte status
The status of the file - not used.


startPage

public int startPage
The start page of the file in flash memory.

Constructor Detail

FileInfo

public FileInfo(String fileName)