Package org.apache.uima.tools.stylemap
Class TableSelectionListener
- java.lang.Object
-
- org.apache.uima.tools.stylemap.TableSelectionListener
-
- All Implemented Interfaces:
java.util.EventListener
,javax.swing.event.ListSelectionListener
public class TableSelectionListener extends java.lang.Object implements javax.swing.event.ListSelectionListener
The listener interface for receiving tableSelection events. The class that is interested in processing a tableSelection event implements this interface, and the object created with that class is registered with a component using the component'saddTableSelectionListener
method. When the tableSelection event occurs, that object's appropriate method is invoked. // * @see TableSelectionEvent
-
-
Field Summary
Fields Modifier and Type Field Description private TableGUIMediator
med
The med.
-
Constructor Summary
Constructors Constructor Description TableSelectionListener(TableGUIMediator med)
Instantiates a new table selection listener.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
valueChanged(javax.swing.event.ListSelectionEvent ev)
-
-
-
Field Detail
-
med
private TableGUIMediator med
The med.
-
-
Constructor Detail
-
TableSelectionListener
public TableSelectionListener(TableGUIMediator med)
Instantiates a new table selection listener.- Parameters:
med
- the med
-
-