Package org.moeaframework.analysis.plot
Interface PlotBuilder.DisplayDriver
- Enclosing class:
- PlotBuilder<T extends PlotBuilder<?>>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface for display drivers, which are responsible for displaying the resulting plot to the user, typically
in some windowing system.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PlotBuilder.DisplayDriverThe default display driver that wraps the plot in a non-blocking window. -
Method Summary
Modifier and TypeMethodDescriptionvoidshow(PlotBuilder<?> builder, int width, int height) Displays the given plot.
-
Field Details
-
DEFAULT
The default display driver that wraps the plot in a non-blocking window.
-
-
Method Details
-
show
Displays the given plot.- Parameters:
builder- the plot builderwidth- the requested display widthheight- the requested display height
-