}
public void writeBoolean(boolean v) { }
- public void writeByte(int v) { }
+
+ public void writeByte(int v) throws IOException {
+ if (recordInterface.canWrite()) {
+ recordInterface.writeByte((byte)v);
+ }
+ }
+
public void writeBytes(String s) { }
public void writeChar(int v) { }
public void writeChars(String s) { }
public void writeDouble(double v) { }
public void writeFloat(float v) { }
- public void writeInt(int v) { }
+
+ public void writeInt(int v) throws IOException {
+ if (recordInterface.canWrite())
+ recordInterface.writeIntBE(v);
+ }
+
public void writeLong(long v) { }
public void writeShort(int v) { }
public void writeUTF(String str) { }