public interface LearningExperimentListener
LearningExperimentListener
interface defines the functionality
of an object that listens to events from a LearningExperiment
.Modifier and Type | Method and Description |
---|---|
void |
experimentEnded(LearningExperiment experiment)
Fired when the experiment has ended.
|
void |
experimentStarted(LearningExperiment experiment)
Fired when the experiment has started.
|
void |
trialEnded(LearningExperiment experiment)
Fired when a trial in the experiment has ended.
|
void |
trialStarted(LearningExperiment experiment)
Fired when a new trial in the experiment has started.
|
void experimentStarted(LearningExperiment experiment)
experiment
- The experiment that started.void experimentEnded(LearningExperiment experiment)
experiment
- The experiment that ended.void trialStarted(LearningExperiment experiment)
experiment
- The experiment that has started a new trial.void trialEnded(LearningExperiment experiment)
experiment
- The experiment that has ended a trial.