Class 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's addTableSelectionListener method. When the tableSelection event occurs, that object's appropriate method is invoked. // * @see TableSelectionEvent
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void valueChanged​(javax.swing.event.ListSelectionEvent ev)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • TableSelectionListener

        public TableSelectionListener​(TableGUIMediator med)
        Instantiates a new table selection listener.
        Parameters:
        med - the med
    • Method Detail

      • valueChanged

        public void valueChanged​(javax.swing.event.ListSelectionEvent ev)
        Specified by:
        valueChanged in interface javax.swing.event.ListSelectionListener