test/java/awt/EventQueue/6980209/bug6980209.java

Print this page




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 6980209
  26    @summary Make tracking SecondaryLoop.enter/exit methods easier
  27    @author Semyon Sadetsky

  28   */
  29 
  30 import sun.util.logging.PlatformLogger;
  31 
  32 import javax.swing.*;
  33 import java.awt.*;
  34 import java.awt.event.ActionEvent;
  35 import java.awt.event.ActionListener;
  36 import java.awt.event.KeyEvent;
  37 import java.awt.event.KeyListener;
  38 
  39 public class bug6980209 implements ActionListener {
  40     private final static PlatformLogger log =
  41             PlatformLogger.getLogger("java.awt.event.WaitDispatchSupport");
  42     public static final int ATTEMPTS = 100;
  43     public static final int EVENTS = 5;
  44 
  45     private static boolean runInEDT;
  46     private static JFrame frame;
  47     private static int disorderCounter = 0;




   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /* @test
  25    @bug 6980209
  26    @summary Make tracking SecondaryLoop.enter/exit methods easier
  27    @author Semyon Sadetsky
  28    @modules java.base/sun.util.logging
  29   */
  30 
  31 import sun.util.logging.PlatformLogger;
  32 
  33 import javax.swing.*;
  34 import java.awt.*;
  35 import java.awt.event.ActionEvent;
  36 import java.awt.event.ActionListener;
  37 import java.awt.event.KeyEvent;
  38 import java.awt.event.KeyListener;
  39 
  40 public class bug6980209 implements ActionListener {
  41     private final static PlatformLogger log =
  42             PlatformLogger.getLogger("java.awt.event.WaitDispatchSupport");
  43     public static final int ATTEMPTS = 100;
  44     public static final int EVENTS = 5;
  45 
  46     private static boolean runInEDT;
  47     private static JFrame frame;
  48     private static int disorderCounter = 0;