apps.mathpadapp.conceptmapping
Interface GraphNode.ConceptMapListener

Enclosing class:
GraphNode

public static interface GraphNode.ConceptMapListener

The listener interface for receiving conceptMap events. The class that is interested in processing a conceptMap event implements this interface, and the object created with that class is registered with a component using the component's addConceptMapListener method. When the conceptMap event occurs, that object's appropriate method is invoked.

See Also:
ConceptMapEvent

Method Summary
 void nodeConnected(GraphLink link)
          Node connected.
 void nodeDisconnected(GraphLink link)
          Node disconnected.
 

Method Detail

nodeConnected

void nodeConnected(GraphLink link)
Node connected.

Parameters:
link - the link

nodeDisconnected

void nodeDisconnected(GraphLink link)
Node disconnected.

Parameters:
link - the link