1 /* 2 * Copyright (c) 2003, Inversoft 3 * 4 * This software is distribuable under the GNU Lesser General Public License. 5 * For more information visit gnu.org. 6 */ 7 package com.inversoft.junit; 8 9 10 import javax.servlet.jsp.JspException; 11 12 13 /** 14 * <p> 15 * This class is a callback for testing body tags. This is 16 * called after each iteration before the doAfterBody is 17 * called. 18 * </p> 19 * 20 * @author Brian Pontarelli 21 * @since 2.0 22 * @version 2.0 23 */ 24 public interface JspTestCallback { 25 26 /** 27 * Handles the callback 28 */ 29 public void callback()throws JspException; 30 }