Package ghidra.graph.algo
Class GraphAlgorithmStatusListener<V>
- java.lang.Object
-
- ghidra.graph.algo.GraphAlgorithmStatusListener<V>
-
- Type Parameters:
V
- the vertex type
public class GraphAlgorithmStatusListener<V> extends java.lang.Object
An interface and state values used to follow the state of vertices as they are processed by algorithms
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GraphAlgorithmStatusListener.STATUS
-
Field Summary
Fields Modifier and Type Field Description protected int
totalStatusChanges
-
Constructor Summary
Constructors Constructor Description GraphAlgorithmStatusListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
finished()
int
getTotalStatusChanges()
void
statusChanged(V v, GraphAlgorithmStatusListener.STATUS s)
-
-
-
Method Detail
-
statusChanged
public void statusChanged(V v, GraphAlgorithmStatusListener.STATUS s)
-
finished
public void finished()
-
getTotalStatusChanges
public int getTotalStatusChanges()
-
-