Uses of Interface
org.apache.commons.math.ode.StepHandler

Packages that use StepHandler
org.apache.commons.math.ode This package provides classes to solve Ordinary Differential Equations problems. 
 

Uses of StepHandler in org.apache.commons.math.ode
 

Classes in org.apache.commons.math.ode that implement StepHandler
 class ContinuousOutputModel
          This class stores all information provided by an ODE integrator during the integration process and build a continuous model of the solution from this.
 class DummyStepHandler
          This class is a step handler that do nothing.
 class StepNormalizer
          This class wraps an object implementing FixedStepHandler into a StepHandler.
 

Fields in org.apache.commons.math.ode declared as StepHandler
private  StepHandler RungeKuttaIntegrator.handler
          Step handler.
protected  StepHandler AdaptiveStepsizeIntegrator.handler
          Step handler.
 

Methods in org.apache.commons.math.ode that return StepHandler
 StepHandler RungeKuttaIntegrator.getStepHandler()
          Get the step handler for this integrator.
 StepHandler FirstOrderIntegrator.getStepHandler()
          Get the step handler for this integrator.
 StepHandler AdaptiveStepsizeIntegrator.getStepHandler()
          Get the step handler for this integrator.
 StepHandler SecondOrderIntegrator.getStepHandler()
          Get the step handler for this integrator.
 

Methods in org.apache.commons.math.ode with parameters of type StepHandler
 void RungeKuttaIntegrator.setStepHandler(StepHandler handler)
          Set the step handler for this integrator.
 void FirstOrderIntegrator.setStepHandler(StepHandler handler)
          Set the step handler for this integrator.
 void AdaptiveStepsizeIntegrator.setStepHandler(StepHandler handler)
          Set the step handler for this integrator.
 void SecondOrderIntegrator.setStepHandler(StepHandler handler)
          Set the step handler for this integrator.
 void GraggBulirschStoerIntegrator.setStepHandler(StepHandler handler)
          Set the step handler for this integrator.