blob: 3549fcfa2dfe6439a196779e71bd3372d8ec91a1 [file] [log] [blame]
package org.apache.myfaces.extensions.scripting.core.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();
}