All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gsi.chart.viewer.event.WindowClosedEvent Maven / Gradle / Ivy

package de.gsi.chart.viewer.event;

import de.gsi.dataset.event.EventSource;

/**
 * Event issued after DataViewWindow has been closed
 *
 * @see de.gsi.chart.viewer.DataViewWindow
 * @see de.gsi.chart.viewer.event.WindowUpdateEvent
 * @author rstein
 */
public class WindowClosedEvent extends WindowUpdateEvent {
    private static final long serialVersionUID = 2846294413532027952L;

    public WindowClosedEvent(final EventSource evtSource) {
        super(evtSource, Type.WINDOW_CLOSED);
    }

    public WindowClosedEvent(final EventSource evtSource, final String msg) {
        super(evtSource, msg, Type.WINDOW_CLOSED);
    }

    public WindowClosedEvent(final EventSource evtSource, final String msg, final Object obj) {
        super(evtSource, msg, obj, Type.WINDOW_CLOSED);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy