Package inra.ijpb.algo
Interface AlgoListener
- All Known Implementing Classes:
AbstractSeparableStrel,AbstractSeparableStrel3D,BlackTopHat,BoundingBox3D,Centroid3D,Closing,CubeStrel,CuboidStrel,DefaultAlgoListener,DiamondStrel,Dilation,EquivalentEllipsoid,Erosion,ExternalGradient,GeodesicDiameter3D,GeodesicDiameter3DFloat,Gradient,InertiaEllipsoid,InternalGradient,IntrinsicVolumesAnalyzer2D,IntrinsicVolumesAnalyzer3D,Laplacian,LargestInscribedBall,MaxFeretDiameter3D,MorphologicalFilter,OctagonStrel,Opening,RegionAnalyzer3D,SquareStrel,WhiteTopHat
public interface AlgoListener
Interface for managing progression and status changes of an algorithm.
- Author:
- David Legland
-
Method Summary
Modifier and Type Method Description voidalgoProgressChanged(AlgoEvent evt)The method devoted to manage the change in the progression of the algorithm.voidalgoStatusChanged(AlgoEvent evt)The method devoted to manage the change in the status of the algorithm.
-
Method Details
-
algoProgressChanged
The method devoted to manage the change in the progression of the algorithm.- Parameters:
evt- the AlgoEvent instance containing info about the algorithm.
-
algoStatusChanged
The method devoted to manage the change in the status of the algorithm.- Parameters:
evt- the AlgoEvent instance containing info about the algorithm.
-