package bluej.debugmgr.objectbench;
import bluej.views.ConstructorView;
import bluej.views.MethodView;
| Listener interface for some object to be notified when a method is to be
| interactively invoked.
|
| @author Davin McCall
|
public interface InvokeListener
{
| Execute a method. The listener must prompt for parameters, if appropriate,
| and then actually execute the method.
|
p.public void executeMethod(MethodView mv);
| Execute a constructor. The listener must prompt for parameters, if appropriate,
| and the actually execute the constructor.
| @param cv
|
p.public void callConstructor(ConstructorView cv);
}
top,
use,
map,
interface InvokeListener
. executeMethod
. callConstructor
12 neLoCode
+ 8 LoComm