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'saddTransportControlListener
method. When the transportControl event occurs, that object's appropriate method is invoked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
controlPaused()
Control paused.void
controlResumed()
Control resumed.void
controlStarted()
Control started.void
controlStopped()
Control stopped.
-