|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| Graph.java | - | - | - | - |
|
||||||||||||||
| 1 |
package baseCode.dataStructure.graph;
|
|
| 2 |
|
|
| 3 |
public interface Graph { |
|
| 4 |
|
|
| 5 |
public void addNode( Object key, Object item ); |
|
| 6 |
|
|
| 7 |
public GraphNode get( Object key );
|
|
| 8 |
|
|
| 9 |
public Object getNodeContents( Object key );
|
|
| 10 |
|
|
| 11 |
public boolean containsKey( Object key ); |
|
| 12 |
|
|
| 13 |
public void unmarkAll(); |
|
| 14 |
} |
|
||||||||||