Interface Observer<D>

All Known Implementing Classes:
EstimatingIdealAndNadirPointsPlotObserver, EvaluationObserver, ExternalArchiveObserver, FitnessObserver, FitnessPlotObserver, FrontPlotObserver, IndicatorPlotObserver, NadirObserver, RunTimeChartObserver, RunTimeForDynamicProblemsChartObserver, WriteSolutionsToFilesObserver
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Observer<D>
Interface representing observers according to the Observer Pattern
Author:
Antonio J. Nebro invalid input: '<'antonio@lcc.uma.es>
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    update(Observable<D> observable, D data)
     
  • Method Details