Methods Summary |
---|
void | clear()Clear facade.
ob = null;
|
protected java.lang.Object | clone()Prevent cloning the facade.
throw new CloneNotSupportedException();
|
public void | close()
ob.close();
|
public void | flush()Will send the buffer to the client.
ob.flush();
|
public void | write(int i)
ob.writeByte(i);
|
public void | write(byte[] b)
write(b, 0, b.length);
|
public void | write(byte[] b, int off, int len)
ob.write(b, off, len);
|