|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface FileIOListener
The listener interface for receiving FileIO events.
Method Summary | |
---|---|
void |
fileAppended(int state)
Called when the operation launched by the FileIO.append method
ends up. |
void |
fileRead(int state,
byte[] content)
Called when the operation launched by the FileIO.read method
ends up. |
void |
fileWritten(int state)
Called when the operation launched by the FileIO.write method
ends up. |
Method Detail |
---|
void fileRead(int state, byte[] content)
FileIO.read
method
ends up.
state
- describes how the operation ended up. Can be
STATE_OK
, STATE_PROBLEM
,
STATE_NOT_READY
, or STATE_FILENAME_NULL
content
- the content of the filevoid fileWritten(int state)
FileIO.write
method
ends up.
state
- describes how the operation ended up. Can be
STATE_OK
, STATE_PROBLEM
,
STATE_NOT_READY
, STATE_FILENAME_NULL
, or
STATE_CONTENT_NULL
void fileAppended(int state)
FileIO.append
method
ends up.
state
- describes how the operation ended up. Can be
STATE_OK
, STATE_PROBLEM
,
STATE_NOT_READY
, STATE_FILENAME_NULL
, or
STATE_CONTENT_NULL
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |