@Override protected void destroyImplInLock() { super.destroyImplInLock(); }
/** * Implementation to handle resize events from the windowing system. All required locks are being * claimed. */ public final void windowResizedOp(int newWidth, int newHeight) { super.defaultWindowResizedOp(newWidth, newHeight); }
/** * Implementation to handle destroy notifications from the windowing system. * * <p>If the {@link NativeSurface} does not implement {@link WindowClosingProtocol} or {@link * WindowClosingMode#DISPOSE_ON_CLOSE} is enabled (default), a thread safe destruction is being * induced. */ public final void windowDestroyNotifyOp() { super.defaultWindowDestroyNotifyOp(); }
/** Default implementation to handle repaint events from the windowing system */ public final void windowRepaintOp() { super.defaultWindowRepaintOp(); }