blob: 558420b1d67dd6f529c34a4e3e2899d619f31c74 [file] [log] [blame]
package rewrite.org.apache.myfaces.extensions.scripting.scanningcore.probes;
/**
* Interface which will allow the proxying of our probe
* in reloading handlers
*
* @author Werner Punz (latest modification by $Author$)
* @version $Revision$ $Date$
*/
public interface MethodReloadingProbe {
/**
* testmethod 1 goes through
*/
public void testMethod1();
/**
* this one throws an exception
*/
public void testMethod2();
}