package javax.servlet.jsp.tagext;

import javax.servlet.jsp.JspException;

/** Evaluates the body of the given runnable tag.
  * A JSP compiler should provide an implementation of this interface.
  * Implementations may use reflection to call a method in the generated
  * Servlet class or could do a JSP include and put the body in another 
  * JSP file
  * or could create a new inner class for each method call.
  */
public interface TagRunner {
    
    public void run( RunnableTag tag ) throws JspException;

}

