Uses of Class
jabble.Trigger

Packages that use Trigger
jabble The core classes for Jabble that make up the framework. 
 

Uses of Trigger in jabble
 

Subclasses of Trigger in jabble
 class OutsideRangeTrigger
          A Trigger that fires if the value of an Indicator is outside a certain range.
 class OverThresholdTrigger
          A Trigger that fires if the value of an Indicator is above a certain value.
 class TimeTrigger
          A trigger that fires after a specified amount of time (no matter what happens).
 class UnderThresholdTrigger
          A Trigger that fires if the threshold of an Indicator is below a certain threshold.
 

Fields in jabble declared as Trigger
protected  Trigger Evolver.stopTrigger
          The trigger used by the evolver to stop the evolution.
 

Methods in jabble with parameters of type Trigger
 int Multigrid.evolve(java.util.List<Slice> slices, int maxIterations, Trigger stopTrigger)
          Evolves the slices using multi grid methods and the evolver given through the constructor.
 int Multigrid.VCycle.evolve(java.util.List<Slice> slices, int maxIterations, Trigger stopTrigger)
          Evolves the slices using multi grid methods and the evolver given through the constructor.
 int Evolver.evolve(java.util.List<Slice> slices, int maxIterations, Trigger stopTrigger)
          Evolves the data in the list of slices for maxIterations time steps, or until the stopTrigger is verified.
 ProblemSolver ProblemSolver.setStopTrigger(Trigger stopTrigger)
          Sets a Trigger to stop the evolution if a condition is met (look at the stopOnXxx methods to stop on simple conditions).