| Method from org.apache.jasper.compiler.DelegatingListener Detail: |
public void beginPageProcessing() throws JasperException {
delegate.beginPageProcessing();
}
|
void doAction() throws JasperException {
action.execute();
}
|
public void endPageProcessing() throws JasperException {
delegate.endPageProcessing();
}
|
public TagLibraries getTagLibraries() {
return delegate.getTagLibraries();
}
|
public void handleBean(Mark start,
Mark stop,
Hashtable attrs) throws JasperException {
doAction();
delegate.handleBean(start, stop, attrs);
}
|
public void handleBeanEnd(Mark start,
Mark stop,
Hashtable attrs) throws JasperException {
doAction();
delegate.handleBeanEnd(start, stop, attrs);
}
|
public void handleCharData(char[] chars) throws JasperException {
delegate.handleCharData(chars);
}
|
public void handleComment(Mark start,
Mark stop) throws JasperException {
doAction();
delegate.handleComment(start, stop);
}
|
public void handleDeclaration(Mark start,
Mark stop) throws JasperException {
doAction();
delegate.handleDeclaration(start, stop);
}
|
public void handleDirective(String directive,
Mark start,
Mark stop,
Hashtable attrs) throws JasperException {
doAction();
delegate.handleDirective(directive, start, stop, attrs);
}
|
public void handleExpression(Mark start,
Mark stop) throws JasperException {
doAction();
delegate.handleExpression(start, stop);
}
|
public void handleForward(Mark start,
Mark stop,
Hashtable attrs,
Hashtable param) throws JasperException {
doAction();
delegate.handleForward(start, stop, attrs, param);
}
|
public void handleGetProperty(Mark start,
Mark stop,
Hashtable attrs) throws JasperException {
doAction();
delegate.handleGetProperty(start, stop, attrs);
}
|
public void handleInclude(Mark start,
Mark stop,
Hashtable attrs,
Hashtable param) throws JasperException {
doAction();
delegate.handleInclude(start, stop, attrs, param);
}
|
public void handlePlugin(Mark start,
Mark stop,
Hashtable attrs,
Hashtable param,
String fallback) throws JasperException {
doAction();
delegate.handlePlugin(start, stop, attrs, param, fallback);
}
|
public void handleScriptlet(Mark start,
Mark stop) throws JasperException {
doAction();
delegate.handleScriptlet(start, stop);
}
|
public void handleSetProperty(Mark start,
Mark stop,
Hashtable attrs) throws JasperException {
doAction();
delegate.handleSetProperty(start, stop, attrs);
}
|
public void handleTagBegin(Mark start,
Hashtable attrs,
String prefix,
String shortTagName,
TagLibraryInfoImpl tli,
TagInfo ti) throws JasperException {
doAction();
delegate.handleTagBegin(start, attrs, prefix, shortTagName, tli, ti);
}
|
public void handleTagEnd(Mark start,
Mark stop,
String prefix,
String shortTagName,
Hashtable attrs,
TagLibraryInfoImpl tli,
TagInfo ti) throws JasperException {
doAction();
delegate.handleTagEnd(start, stop, prefix, shortTagName, attrs, tli, ti);
}
|