Package | Description |
---|---|
desmoj.extensions.experimentation.ui |
Parameterizable GUI for experiment conduction.
|
Modifier and Type | Class and Description |
---|---|
class |
GraphicalObserver
Base class for graphical observers in the experiment launcher.
|
class |
HistogramPlotter
A simple histogram plotter based on the statistic class Histogram and
the UI class ChartPanel.
|
class |
TimeSeriesPlotter
A simple time series plotter that can be displayed in the experiment
launcher.
|
Modifier and Type | Method and Description |
---|---|
IGraphicalObserver[] |
GraphicalObserverContext.getChildren()
Should returns all observers in this context.
|
IGraphicalObserver[] |
ObserverDesktop.getChildren()
Returns an array of graphical observers registered with the desktop.
|
Modifier and Type | Method and Description |
---|---|
void |
GraphicalObserverContext.add(IGraphicalObserver o)
Should add a graphical observer to the context.
|
void |
ObserverDesktop.add(IGraphicalObserver o)
Adds a new graphical observer to the desktop
|
void |
GraphicalObserverContext.remove(IGraphicalObserver o)
Should remove a graphical observer from the context.
|
void |
ObserverDesktop.remove(IGraphicalObserver o)
Removes graphical observer from the desktop
|
void |
GraphicalObserverContext.setLocation(IGraphicalObserver o,
int x,
int y)
Should set the given observer's window position
|
void |
ObserverDesktop.setLocation(IGraphicalObserver o,
int xLoc,
int yLoc)
Sets the position of a registered graphical observer's window.
|
void |
GraphicalObserverContext.setSize(IGraphicalObserver o,
int width,
int height)
Should set the given observer's window size
|
void |
ObserverDesktop.setSize(IGraphicalObserver o,
int width,
int height)
Sets the size of a registered graphical observer's window
|
void |
GraphicalObserverContext.setVisible(IGraphicalObserver o,
boolean visible)
Should set the given graphical observer (in)visible
|
void |
ObserverDesktop.setVisible(IGraphicalObserver o,
boolean visible)
Sets the given graphical observer (in)visible
|
void |
GraphicalObserverContext.update(IGraphicalObserver o)
Should update the given graphical observer's display
|
void |
ObserverDesktop.update(IGraphicalObserver o)
Updates the given graphical observer's display
|