public class GraphDecorator<V,E>
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private IDecorator<E> |
edgeDecorator |
private IDecorator<V> |
nodeDecorator |
| Constructor and Description |
|---|
GraphDecorator(IDecorator<V> nodeDecorator0,
IDecorator<E> edgeDecorator0) |
| Modifier and Type | Method and Description |
|---|---|
void |
decorate(edu.uci.ics.jung.graph.Graph<V,E> graph) |
private final IDecorator<V> nodeDecorator
private final IDecorator<E> edgeDecorator
public GraphDecorator(IDecorator<V> nodeDecorator0, IDecorator<E> edgeDecorator0)