Uses of Interface
net.ggtools.grand.graph.Link
-
Packages that use Link Package Description net.ggtools.grand.ant net.ggtools.grand.graph net.ggtools.grand.graph.visit This package holds the various interfaces, adapters or classes used in the implementation of a visitor design pattern. -
-
Uses of Link in net.ggtools.grand.ant
Classes in net.ggtools.grand.ant that implement Link Modifier and Type Class Description class
AntLink
A basic (i.e. dependency) link in Ant build file.class
AntTaskLink
A link representing a call by a task such likeant
,runtarget
, etc.class
SubantTaskLink
A link representing a call by a task such likesubant
. -
Uses of Link in net.ggtools.grand.graph
Classes in net.ggtools.grand.graph that implement Link Modifier and Type Class Description class
LinkImpl
Methods in net.ggtools.grand.graph that return Link Modifier and Type Method Description Link
Graph. createLink(String linkName, Node startNode, Node endNode)
Creates a new link between two nodes.Link
GraphElementFactory. createLink(String linkName, Node startNode, Node endNode)
Creates a new link between 2 nodes.Link
GraphImpl. createLink(String linkName, Node startNode, Node endNode)
Creates a new link between two nodes.Methods in net.ggtools.grand.graph that return types with arguments of type Link Modifier and Type Method Description Collection<Link>
Node. getBackLinks()
Returns links coming to the node.Collection<Link>
NodeImpl. getBackLinks()
Method getBackLinks.Collection<Link>
Node. getLinks()
Returns links originating from the node.Collection<Link>
NodeImpl. getLinks()
Method getLinks.Methods in net.ggtools.grand.graph with parameters of type Link Modifier and Type Method Description void
Node. addBackLink(Link link)
Add a link to the node.void
NodeImpl. addBackLink(Link link)
Method addBackLink.void
Node. addLink(Link link)
Add a link to the node.void
NodeImpl. addLink(Link link)
Method addLink.void
Node. removeBackLink(Link link)
Remove a link from the node.void
NodeImpl. removeBackLink(Link link)
Method removeBackLink.void
Node. removeLink(Link link)
Remove a link from the node.void
NodeImpl. removeLink(Link link)
Method removeLink. -
Uses of Link in net.ggtools.grand.graph.visit
Methods in net.ggtools.grand.graph.visit with parameters of type Link Modifier and Type Method Description void
LinkVisitor. visitLink(Link link)
Visit a basic link.
-