// Tag interface
//-------------------------------------------------------------------------
public void doTag(XMLOutput output) throws MissingAttributeException, JellyTagException {
if ( null == methodName) {
throw new MissingAttributeException( "method" );
}
if ( null == onInstance ) {
throw new MissingAttributeException( "on" );
}
invokeBody(output);
Object[] values = paramValues.toArray();