test/java/awt/Choice/ItemStateChangeTest/ItemStateChangeTest.java

Print this page




  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 7171412
  27   @summary awt Choice doesn't fire ItemStateChange when selecting item after select() call
  28   @author Oleg Pekhovskiy: area=awt-choice
  29   @library ../../regtesthelpers

  30   @build Util

  31   @run main ItemStateChangeTest
  32 */
  33 
  34 import test.java.awt.regtesthelpers.Util;

  35 
  36 import java.awt.*;
  37 import java.awt.event.*;
  38 import sun.awt.OSInfo;
  39 
  40 public class ItemStateChangeTest extends Frame {
  41 
  42     int events = 0;
  43 
  44     public static void main(String args[]) {
  45         new ItemStateChangeTest();
  46     }
  47 
  48     public ItemStateChangeTest() {
  49 
  50         if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
  51             return;
  52         }
  53 
  54         try {
  55 
  56             final Robot robot = new Robot();
  57             robot.setAutoDelay(20);
  58             Util.waitForIdle(robot);




  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 7171412
  27   @summary awt Choice doesn't fire ItemStateChange when selecting item after select() call
  28   @author Oleg Pekhovskiy: area=awt-choice
  29   @library ../../regtesthelpers
  30   @library ../../../../lib/testlibrary
  31   @build Util
  32   @build jdk.testlibrary.OSInfo
  33   @run main ItemStateChangeTest
  34 */
  35 
  36 import test.java.awt.regtesthelpers.Util;
  37 import jdk.testlibrary.OSInfo;
  38 
  39 import java.awt.*;
  40 import java.awt.event.*;

  41 
  42 public class ItemStateChangeTest extends Frame {
  43 
  44     int events = 0;
  45 
  46     public static void main(String args[]) {
  47         new ItemStateChangeTest();
  48     }
  49 
  50     public ItemStateChangeTest() {
  51 
  52         if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
  53             return;
  54         }
  55 
  56         try {
  57 
  58             final Robot robot = new Robot();
  59             robot.setAutoDelay(20);
  60             Util.waitForIdle(robot);