return EVAL_BODY_INCLUDE;
}
/** {@inheritDoc} */
public int doEndTag() throws JspException {
TileDefinition d = new TileDefinition();
d.setName(name);
d.setTemplate(template);
d.setExtends(extend);
d.setRole(role);
d.setPreparer(preparer);
d.getAttributes().putAll(attributes);
try {
container.register(d, pageContext);
} catch (TilesException e) {
throw new JspException("Unable to add definition. " ,e);