rcx.rcxtools.filebrowser
Interface ListBrowserHandler


public interface ListBrowserHandler

Author:
Thierry.Kormann@sophia.inria.fr

Method Summary
 void notifyExecute(ListBrowser browser, ListNode node)
          Notifies that a node has to be executed.
 void notifyOutside(ListBrowser browser, java.awt.event.MouseEvent e)
          Notifies that a mouse click has been done and targets no node.
 void notifySelect(ListBrowser browser, ListNode node, java.awt.event.MouseEvent e)
          Notifies that a node has to be selected.
 

Method Detail

notifyOutside

void notifyOutside(ListBrowser browser,
                   java.awt.event.MouseEvent e)
Notifies that a mouse click has been done and targets no node.

Parameters:
browser - the NodeBrowser sending the notification.

notifySelect

void notifySelect(ListBrowser browser,
                  ListNode node,
                  java.awt.event.MouseEvent e)
Notifies that a node has to be selected.

Parameters:
browser - the NodeBrowser sending the notification.
node - the selected node
e - the mouse event that targets the selected node

notifyExecute

void notifyExecute(ListBrowser browser,
                   ListNode node)
Notifies that a node has to be executed.

Parameters:
browser - the NodeBrowser sending the notification.
node - the node to execute