src/share/classes/java/awt/EventQueue.java

Print this page

        

*** 734,744 **** } else if (src instanceof AWTAutoShutdown) { if (noEvents()) { dispatchThread.stopDispatching(); } } else { ! if (eventLog.isLoggable(PlatformLogger.FINE)) { eventLog.fine("Unable to dispatch event: " + event); } } } --- 734,744 ---- } else if (src instanceof AWTAutoShutdown) { if (noEvents()) { dispatchThread.stopDispatching(); } } else { ! if (eventLog.isLoggable(PlatformLogger.Level.FINE)) { eventLog.fine("Unable to dispatch event: " + event); } } }
*** 832,842 **** * @see java.awt.EventQueue#pop * @throws NullPointerException if <code>newEventQueue</code> is <code>null</code> * @since 1.2 */ public void push(EventQueue newEventQueue) { ! if (eventLog.isLoggable(PlatformLogger.FINE)) { eventLog.fine("EventQueue.push(" + newEventQueue + ")"); } pushPopLock.lock(); try { --- 832,842 ---- * @see java.awt.EventQueue#pop * @throws NullPointerException if <code>newEventQueue</code> is <code>null</code> * @since 1.2 */ public void push(EventQueue newEventQueue) { ! if (eventLog.isLoggable(PlatformLogger.Level.FINE)) { eventLog.fine("EventQueue.push(" + newEventQueue + ")"); } pushPopLock.lock(); try {
*** 856,866 **** while (topQueue.peekEvent() != null) { try { // Use getNextEventPrivate() as it doesn't call flushPendingEvents() newEventQueue.postEventPrivate(topQueue.getNextEventPrivate()); } catch (InterruptedException ie) { ! if (eventLog.isLoggable(PlatformLogger.FINE)) { eventLog.fine("Interrupted push", ie); } } } --- 856,866 ---- while (topQueue.peekEvent() != null) { try { // Use getNextEventPrivate() as it doesn't call flushPendingEvents() newEventQueue.postEventPrivate(topQueue.getNextEventPrivate()); } catch (InterruptedException ie) { ! if (eventLog.isLoggable(PlatformLogger.Level.FINE)) { eventLog.fine("Interrupted push", ie); } } }
*** 896,906 **** * on this <code>EventQueue</code> * @see java.awt.EventQueue#push * @since 1.2 */ protected void pop() throws EmptyStackException { ! if (eventLog.isLoggable(PlatformLogger.FINE)) { eventLog.fine("EventQueue.pop(" + this + ")"); } pushPopLock.lock(); try { --- 896,906 ---- * on this <code>EventQueue</code> * @see java.awt.EventQueue#push * @since 1.2 */ protected void pop() throws EmptyStackException { ! if (eventLog.isLoggable(PlatformLogger.Level.FINE)) { eventLog.fine("EventQueue.pop(" + this + ")"); } pushPopLock.lock(); try {
*** 919,929 **** // Transfer all events back to previous EventQueue. while (topQueue.peekEvent() != null) { try { prevQueue.postEventPrivate(topQueue.getNextEventPrivate()); } catch (InterruptedException ie) { ! if (eventLog.isLoggable(PlatformLogger.FINE)) { eventLog.fine("Interrupted pop", ie); } } } --- 919,929 ---- // Transfer all events back to previous EventQueue. while (topQueue.peekEvent() != null) { try { prevQueue.postEventPrivate(topQueue.getNextEventPrivate()); } catch (InterruptedException ie) { ! if (eventLog.isLoggable(PlatformLogger.Level.FINE)) { eventLog.fine("Interrupted pop", ie); } } }