![JAR search and dependency download from the Maven repository](/logo.png)
de.gsi.chart.viewer.event.WindowRestoredEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chartfx-chart Show documentation
Show all versions of chartfx-chart Show documentation
This charting library ${project.artifactId}- is an extension
in the spirit of Oracle's XYChart and performance/time-proven JDataViewer charting functionalities.
Emphasis was put on plotting performance for both large number of data points and real-time displays,
as well as scientific accuracies leading to error bar/surface plots, and other scientific plotting
features (parameter measurements, fitting, multiple axes, zoom, ...).
The newest version!
package de.gsi.chart.viewer.event;
import de.gsi.dataset.event.EventSource;
/**
* Event issued after DataViewWindow has been restored
*
* @see de.gsi.chart.viewer.DataViewWindow
* @see de.gsi.chart.viewer.event.WindowUpdateEvent
* @author rstein
*/
public class WindowRestoredEvent extends WindowUpdateEvent {
private static final long serialVersionUID = 2846294413532027952L;
public WindowRestoredEvent(final EventSource evtSource) {
super(evtSource, Type.WINDOW_RESTORED);
}
public WindowRestoredEvent(final EventSource evtSource, final String msg) {
super(evtSource, msg, Type.WINDOW_RESTORED);
}
public WindowRestoredEvent(final EventSource evtSource, final String msg, final Object obj) {
super(evtSource, msg, obj, Type.WINDOW_RESTORED);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy