//
// Recording state methods
//
- public boolean isRecordFromBeginning();
public boolean canWrite();
//
// Write data methods
//
+
public void write(byte b[]) throws IOException;
public void write(byte b[], int off, int len) throws IOException;
public void writeByte(byte b) throws IOException;
}
setPixelFormat();
-
resetSelection();
inputEnabled = false;
// Override RecordInterface methods
//
- public boolean isRecordFromBeginning() {
- return false;
- //return rfb.recordFromBeginning;
- }
-
public boolean canWrite() {
// We can record if rec is not null
return rfb.rec != null;