< prev index next >

test/jdk/java/awt/event/ComponentEvent/MovedResizedTardyEventTest/MovedResizedTardyEventTest.java

Print this page




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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 /*
  25   test

  26   @bug      4985250
  27   @summary  COMPONENT_MOVED/RESIZED tardy events shouldn't be generated.
  28   @author   tav@sparc.spb.su
  29   @run applet MovedResizedTardyEventTest.html
  30 */
  31 
  32 import java.awt.*;
  33 import java.awt.event.*;
  34 import java.applet.Applet;
  35 import java.lang.reflect.InvocationTargetException;
  36 
  37 public class MovedResizedTardyEventTest extends Applet {
  38     Frame f1 = new Frame("F-1");
  39     Frame f2 = new Frame("F-2");
  40 
  41     boolean eventFlag = false;
  42 
  43     public static void main(String[] args) {
  44         Applet a = new MovedResizedTardyEventTest();
  45         a.start();
  46     }
  47 
  48     public void start() {
  49         f1.setVisible(true);
  50         f2.setVisible(true);
  51 
  52         try {
  53             Thread.sleep(500);
  54         } catch (InterruptedException e) {}
  55 
  56         f1.addComponentListener(new ComponentAdapter() {
  57                 public void componentMoved(ComponentEvent e) {
  58                     MovedResizedTardyEventTest.this.eventFlag = true;
  59                     System.err.println(e);
  60                 }
  61                 public void componentResized(ComponentEvent e) {
  62                     MovedResizedTardyEventTest.this.eventFlag = true;
  63                     System.err.println(e);
  64                 }




   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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 /*
  25   @test
  26   @key headful
  27   @bug          4985250
  28   @summary      COMPONENT_MOVED/RESIZED tardy events shouldn't be generated.
  29   @modules java.desktop/sun.awt
  30   @run main MovedResizedTardyEventTest
  31 */
  32 
  33 import java.awt.*;
  34 import java.awt.event.*;

  35 import java.lang.reflect.InvocationTargetException;
  36 
  37 public class MovedResizedTardyEventTest {
  38     Frame f1 = new Frame("F-1");
  39     Frame f2 = new Frame("F-2");
  40 
  41     boolean eventFlag = false;
  42 
  43     public static void main(String[] args) {
  44         MovedResizedTardyEventTest a = new MovedResizedTardyEventTest();
  45         a.start();
  46     }
  47 
  48     public void start() {
  49         f1.setVisible(true);
  50         f2.setVisible(true);
  51 
  52         try {
  53             Thread.sleep(500);
  54         } catch (InterruptedException e) {}
  55 
  56         f1.addComponentListener(new ComponentAdapter() {
  57                 public void componentMoved(ComponentEvent e) {
  58                     MovedResizedTardyEventTest.this.eventFlag = true;
  59                     System.err.println(e);
  60                 }
  61                 public void componentResized(ComponentEvent e) {
  62                     MovedResizedTardyEventTest.this.eventFlag = true;
  63                     System.err.println(e);
  64                 }


< prev index next >