Uses of Class
apps.conceptmap.graphcomponents.link.GraphLink

Packages that use GraphLink
apps.conceptmap.graphcomponents.link   
apps.conceptmap.graphcomponents.nodes   
apps.conceptmap.utility   
 

Uses of GraphLink in apps.conceptmap.graphcomponents.link
 

Constructors in apps.conceptmap.graphcomponents.link with parameters of type GraphLink
LinkMenu(ContentSystem contentSystem, GraphManager gManager, GraphLink link)
          Instantiates a new link menu.
 

Uses of GraphLink in apps.conceptmap.graphcomponents.nodes
 

Methods in apps.conceptmap.graphcomponents.nodes that return types with arguments of type GraphLink
 java.util.ArrayList<GraphLink> GraphNode.getIncomingLinks()
          Gets the incoming links.
 java.util.ArrayList<GraphLink> GraphNode.getOutgoingLinks()
          Gets the outgoing links.
 

Methods in apps.conceptmap.graphcomponents.nodes with parameters of type GraphLink
 void GraphNode.fireNodeConnected(GraphLink link)
          Fire node connected.
 void GraphNode.fireNodeDisconnected(GraphLink link)
          Fire node disconnected.
 void GraphNode.registerIncomingLink(GraphLink link)
          Register incoming link.
 void GraphNode.registerOutgoingLink(GraphLink link)
          Register outgoing link.
 boolean GraphNode.unregisterLink(GraphLink link)
          Unregister link.
 

Uses of GraphLink in apps.conceptmap.utility
 

Methods in apps.conceptmap.utility that return types with arguments of type GraphLink
 java.util.ArrayList<GraphLink> GraphManager.getGraphLinks()
          Gets the graph links.
 

Methods in apps.conceptmap.utility with parameters of type GraphLink
 void GraphManager.addGraphLink(GraphLink link)
          Adds the graph link.
 void GraphManager.detachGraphLink(GraphLink link)
          Detach graph link.
 void ConceptMapListener.nodeConnected(GraphLink link)
          Node connected.
 void ConceptMapListener.nodeDisconnected(GraphLink link)
          Node disconnected.