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);
}
Aggregations