Methods Summary |
---|
public void | close()Invokes the delegate's close() method.
out.close();
|
public void | flush()Invokes the delegate's flush() method.
out.flush();
|
public void | write(int idx)Invokes the delegate's write(int) method.
out.write(idx);
|
public void | write(byte[] bts)Invokes the delegate's write(byte[]) method.
out.write(bts);
|
public void | write(byte[] bts, int st, int end)Invokes the delegate's write(byte[]) method.
out.write(bts, st, end);
|