Methods Summary |
---|
public int | afterBody()
afterBody = true;
boolean result = bean.end(this, bean.usesBody() ? body.toString() : "");
if (result) {
return REPEAT_EVALUATION;
} else {
return END_EVALUATION;
}
|
public void | close()
if (bean.usesBody()) {
body.close();
}
|
public void | flush()
writer.flush();
if (bean.usesBody()) {
body.flush();
}
|
public org.apache.struts2.components.Component | getBean()
return bean;
|
public void | onError(java.lang.Throwable throwable)
throw throwable;
|
public int | onStart()
boolean result = bean.start(this);
if (result) {
return EVALUATE_BODY;
} else {
return SKIP_BODY;
}
|
public void | write(char[] cbuf, int off, int len)
if (bean.usesBody() && !afterBody) {
body.write(cbuf, off, len);
} else {
writer.write(cbuf, off, len);
}
|