com.java4less.rtree
Interface RNodeListener


public interface RNodeListener

your can implement this interface in order to reveice rtree events.


Method Summary
 void clickedNode(RNode r)
          this event is triggered when a node is clicked
 void droppedNode(RNode r, RNode on)
          this event is triggered when a node is drag and dropped on another node3
 void selectedNode(RNode r)
          this event is triggered when a node is selected
 

Method Detail

selectedNode

public void selectedNode(RNode r)
this event is triggered when a node is selected

clickedNode

public void clickedNode(RNode r)
this event is triggered when a node is clicked

droppedNode

public void droppedNode(RNode r,
                        RNode on)
this event is triggered when a node is drag and dropped on another node3