* @throws OgnlException Extension element syntax is incorrectly formed, or the
* <a href="http://www.ognl.org/">OGNL</a> expression is unspecified or its
* syntax is incorrectly formed.
*/
public Object select(XSLProcessorContext context, ElemExtensionCall element) throws OgnlException {
AVT ognlAVT = element.getLiteralResultAttribute("ognl");
if (ognlAVT == null) {
throw new OgnlException("'ognl' expression attribute not specified.");
}
return select(ognlAVT.getSimpleString());
}