jdk/src/share/classes/sun/awt/AWTAccessor.java
changeset 4365 4ac67034e98b
parent 3237 7c6c2d9361d9
child 4371 dc9dcb8b0ae7
equal deleted inserted replaced
4364:4b4427db3536 4365:4ac67034e98b
   247     /*
   247     /*
   248      * An accessor for the EventQueue class
   248      * An accessor for the EventQueue class
   249      */
   249      */
   250     public interface EventQueueAccessor {
   250     public interface EventQueueAccessor {
   251         /*
   251         /*
   252          * Gets the next event queue.
       
   253          */
       
   254         EventQueue getNextQueue(EventQueue eventQueue);
       
   255         /*
       
   256          * Gets the event dispatch thread.
   252          * Gets the event dispatch thread.
   257          */
   253          */
   258         Thread getDispatchThread(EventQueue eventQueue);
   254         Thread getDispatchThread(EventQueue eventQueue);
       
   255         /*
       
   256          * Checks if the current thread is EDT for the given EQ.
       
   257          */
       
   258         public boolean isDispatchThreadImpl(EventQueue eventQueue);
   259     }
   259     }
   260 
   260 
   261     /*
   261     /*
   262      * An accessor for the PopupMenu class
   262      * An accessor for the PopupMenu class
   263      */
   263      */