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 classAntLinkA basic (i.e. dependency) link in Ant build file.classAntTaskLinkA link representing a call by a task such likeant,runtarget, etc.classSubantTaskLinkA 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 classLinkImplMethods in net.ggtools.grand.graph that return Link Modifier and Type Method Description LinkGraph. createLink(String linkName, Node startNode, Node endNode)Creates a new link between two nodes.LinkGraphElementFactory. createLink(String linkName, Node startNode, Node endNode)Creates a new link between 2 nodes.LinkGraphImpl. 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 voidNode. addBackLink(Link link)Add a link to the node.voidNodeImpl. addBackLink(Link link)Method addBackLink.voidNode. addLink(Link link)Add a link to the node.voidNodeImpl. addLink(Link link)Method addLink.voidNode. removeBackLink(Link link)Remove a link from the node.voidNodeImpl. removeBackLink(Link link)Method removeBackLink.voidNode. removeLink(Link link)Remove a link from the node.voidNodeImpl. 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 voidLinkVisitor. visitLink(Link link)Visit a basic link.
-