| org.w3c.tools.widgets.NodeHandler
All known Subclasses: org.w3c.jigadm.editors.FrameBrowser,
NodeHandler | public interface NodeHandler (Code) | | The interface to be implemented by nodes.
What is a node is application dependent, however, the informations the
browser needs in order to be able do display nodes are obtained through
this interface.
See Also: TreeBrowser |
isDirectory | public boolean isDirectory(TreeBrowser browser, TreeNode node)(Code) | | Checks if the node is a directory.
Parameters: browser - the TreeBrowser sending the notification. |
notifyCollapse | public void notifyCollapse(TreeBrowser browser, TreeNode node)(Code) | | Notifies that a node has to be collapsed.
Parameters: browser - the TreeBrowser sending the notification. |
notifyExecute | public void notifyExecute(TreeBrowser browser, TreeNode node)(Code) | | Notifies that a node has to be executed.
Parameters: browser - the TreeBrowser sending the notification. |
notifyExpand | public void notifyExpand(TreeBrowser browser, TreeNode node)(Code) | | Notifies that a node has to be expanded.
Parameters: browser - the TreeBrowser sending the notification. |
notifySelect | public void notifySelect(TreeBrowser browser, TreeNode node)(Code) | | Notifies that a node has to be selected.
Parameters: browser - the TreeBrowser sending the notification. |
|
|