public int doStartTag() throws JspException {
return EVAL_BODY_INCLUDE;
}
public int doEndTag() throws JspException {
PlotContainer pc = (PlotContainer)findAncestorWithClass(this, PlotContainer.class);
if (pc == null) {
throw new JspException("<plot> must be nested in a PlotContainer tag like <overlaid-chart>");
}
pc.addPlot(plotDefinition);
return doAfterEndTag(EVAL_PAGE);
}