instrument/JTree API Documentation

org.pvv.bcd.instrument.JTree
Interface VetoableTreeStructureChangeListener

All Superinterfaces:
java.util.EventListener

public interface VetoableTreeStructureChangeListener
extends java.util.EventListener

Interface to implement for anyone who wants to be notified of tree structure changes. It is also possible to veto these events, which can be great fun.


Method Summary
 void nodeCreation(VetoableTreeStructureChangeEvent e)
           
 void nodeDeletion(VetoableTreeStructureChangeEvent e)
           
 void nodeMove(VetoableTreeStructureChangeEvent e)
           
 void nodeRename(VetoableTreeStructureChangeEvent e)
           
 

Method Detail

nodeCreation

public void nodeCreation(VetoableTreeStructureChangeEvent e)
                  throws VetoException

nodeDeletion

public void nodeDeletion(VetoableTreeStructureChangeEvent e)
                  throws VetoException

nodeMove

public void nodeMove(VetoableTreeStructureChangeEvent e)
              throws VetoException

nodeRename

public void nodeRename(VetoableTreeStructureChangeEvent e)
                throws VetoException

instrument/JTree API Documentation