Package net.ggtools.grand.graph
Interface GraphConsumer
-
- All Known Subinterfaces:
GraphFilter
,GraphWriter
- All Known Implementing Classes:
AbstractGraphFilter
,ConnectedToNodeFilter
,DotWriter
,FilterChain
,FromNodeFilter
,GraphWalkFilter
,IsolatedNodeFilter
,MissingNodeFilter
,NodeRemoverFilter
,PrefixedNodeFilter
,ToNodeFilter
public interface GraphConsumer
Interface for classes using graphs.- Author:
- Christophe Labouisse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setProducer(GraphProducer producer)
Set the graph producer.
-
-
-
Method Detail
-
setProducer
void setProducer(GraphProducer producer)
Set the graph producer. Such a producer will be called whenever the consumer needs a graph.- Parameters:
producer
- the producer to get the graph from.
-
-