Package pal.misc
Interface PalObjectListener
-
- All Known Implementing Classes:
CachedRateMatrix,FastLikelihoodCalculator,GeneralLikelihoodCalculator
public interface PalObjectListenerDefines objects that monitor certain PalObjects for changes- Version:
- $Id: PalObjectListener.java,v 1.2 2002/07/09 06:30:59 matt Exp $
- Author:
- Matthew Goode
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classPalObjectListener.EventGeneratorA base class for classes that fire PalObject events
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidparametersChanged(PalObjectEvent pe)Signifies that parametric valued governing the state of this Object have changed.voidstructureChanged(PalObjectEvent pe)Signifies that the structure of the object has changed (for example in trees to topology has changed)
-
-
-
Method Detail
-
parametersChanged
void parametersChanged(PalObjectEvent pe)
Signifies that parametric valued governing the state of this Object have changed. Parameters don't have to be visible ones For example, in trees the branch lengths have changed.
-
structureChanged
void structureChanged(PalObjectEvent pe)
Signifies that the structure of the object has changed (for example in trees to topology has changed)
-
-