Search in sources :

Example 1 with StageClosingEvent

use of limelight.ui.events.stage.StageClosingEvent in project limelight by slagyr.

the class Stage method close.

public void close() {
    if (closing)
        return;
    closing = true;
    new StageClosingEvent().dispatch(this);
    hide();
    setScene(null);
    doClose();
    new StageClosedEvent().dispatch(this);
}
Also used : StageClosedEvent(limelight.ui.events.stage.StageClosedEvent) StageClosingEvent(limelight.ui.events.stage.StageClosingEvent)

Aggregations

StageClosedEvent (limelight.ui.events.stage.StageClosedEvent)1 StageClosingEvent (limelight.ui.events.stage.StageClosingEvent)1