Package org.apache.uima.tools.cvd
Class AnnotationDisplayCustomizationFrame.TypeTreeSelectionListener
- java.lang.Object
-
- org.apache.uima.tools.cvd.AnnotationDisplayCustomizationFrame.TypeTreeSelectionListener
-
- All Implemented Interfaces:
java.util.EventListener
,javax.swing.event.TreeSelectionListener
- Enclosing class:
- AnnotationDisplayCustomizationFrame
private class AnnotationDisplayCustomizationFrame.TypeTreeSelectionListener extends java.lang.Object implements javax.swing.event.TreeSelectionListener
The listener interface for receiving typeTreeSelection events. The class that is interested in processing a typeTreeSelection event implements this interface, and the object created with that class is registered with a component using the component'saddTypeTreeSelectionListener
method. When the typeTreeSelection event occurs, that object's appropriate method is invoked.- See Also:
TypeTreeSelectionEvent
-
-
Constructor Summary
Constructors Modifier Constructor Description private
TypeTreeSelectionListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
valueChanged(javax.swing.event.TreeSelectionEvent event)
Value changed.
-
-
-
Method Detail
-
valueChanged
public void valueChanged(javax.swing.event.TreeSelectionEvent event)
Value changed.- Specified by:
valueChanged
in interfacejavax.swing.event.TreeSelectionListener
- Parameters:
event
- the event- See Also:
TreeSelectionListener.valueChanged(javax.swing.event.TreeSelectionEvent)
-
-