Package bluej.extensions2.event
Interface InvocationFinishedListener
-
public interface InvocationFinishedListener
This interface allows an extension to listen for when an invocation has finished.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
invocationFinished(InvocationFinishedEvent event)
This method will be called when an invocation has finished.
-
-
-
Method Detail
-
invocationFinished
void invocationFinished(InvocationFinishedEvent event)
This method will be called when an invocation has finished. If a long operation must be performed the extension should start a Thread.
-
-