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.ObjectAn 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 classGraphAlgorithmStatusListener.STATUS 
- 
Field Summary
Fields Modifier and Type Field Description protected inttotalStatusChanges 
- 
Constructor Summary
Constructors Constructor Description GraphAlgorithmStatusListener() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfinished()intgetTotalStatusChanges()voidstatusChanged(V v, GraphAlgorithmStatusListener.STATUS s) 
 - 
 
- 
- 
Method Detail
- 
statusChanged
public void statusChanged(V v, GraphAlgorithmStatusListener.STATUS s)
 
- 
finished
public void finished()
 
- 
getTotalStatusChanges
public int getTotalStatusChanges()
 
 - 
 
 -