581582583584585586587588589590591
public void toFront() { toolkit.lockAWT(); try { NativeWindow win = getNativeWindow(); if (win != null) { win.toFront(); } } finally { toolkit.unlockAWT(); } }
587588589590591592593594595596597
550551552553554555556557558559560