Package org.apache.uima.tools.util.gui
Interface TransportControlListener
- All Known Implementing Classes:
CpmPanel
public interface TransportControlListener
The listener interface for receiving transportControl events. The class that is interested in
processing a transportControl event implements this interface, and the object created with that
class is registered with a component using the component's
addTransportControlListener
method. When the transportControl event occurs, that
object's appropriate method is invoked.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Control paused.void
Control resumed.void
Control started.void
Control stopped.
-
Method Details
-
controlStarted
void controlStarted()Control started. -
controlPaused
void controlPaused()Control paused. -
controlResumed
void controlResumed()Control resumed. -
controlStopped
void controlStopped()Control stopped.
-