Methods Summary |
---|
void | clear()Clear facade.
ob = null;
|
protected java.lang.Object | clone()Prevent cloning the facade.
throw new CloneNotSupportedException();
|
public void | close()
// Disallow operation if the object has gone out of scope
if (ob == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
ob.close();
|
public void | flush()Will send the buffer to the client.
// Disallow operation if the object has gone out of scope
if (ob == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
ob.flush();
|
public void | print(java.lang.String s)
// Disallow operation if the object has gone out of scope
if (ob == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
ob.write(s);
|
public void | write(int i)
// Disallow operation if the object has gone out of scope
if (ob == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
ob.writeByte(i);
|
public void | write(byte[] b)
// Disallow operation if the object has gone out of scope
if (ob == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
write(b, 0, b.length);
|
public void | write(byte[] b, int off, int len)
// Disallow operation if the object has gone out of scope
if (ob == null) {
throw new IllegalStateException(
sm.getString("object.invalidScope"));
}
ob.write(b, off, len);
|