Package cdc.graphs.impl
Class BasicGraphHeavyNode<E>
- java.lang.Object
-
- cdc.graphs.impl.BasicGraphHeavyNode<E>
-
- Type Parameters:
E- The edge type.
- All Implemented Interfaces:
GraphHeavyNode<E>
- Direct Known Subclasses:
TestGraphHeavyNode
public class BasicGraphHeavyNode<E> extends Object implements GraphHeavyNode<E>
Default implementation ofGraphHeavyNode.- Author:
- Damien Carbonne
-
-
Constructor Summary
Constructors Constructor Description BasicGraphHeavyNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterable<E>getIngoings()Iterable<E>getOutgoings()
-
-
-
Method Detail
-
getOutgoings
public Iterable<E> getOutgoings()
- Specified by:
getOutgoingsin interfaceGraphHeavyNode<E>
-
getIngoings
public Iterable<E> getIngoings()
- Specified by:
getIngoingsin interfaceGraphHeavyNode<E>
-
-