< prev index next >

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

Print this page
rev 51542 : 8210039: move OSInfo to top level testlibrary
Reviewed-by: duke


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

  38 import test.java.awt.regtesthelpers.Util;
  39 import jdk.testlibrary.OSInfo;
  40 
  41 import java.awt.*;
  42 import java.awt.event.*;
  43 
  44 public class ItemStateChangeTest extends Frame {
  45 
  46     int events = 0;
  47 
  48     public static void main(String args[]) {
  49         new ItemStateChangeTest();
  50     }
  51 
  52     public ItemStateChangeTest() {
  53 
  54         if (OSInfo.getOSType() != OSInfo.OSType.WINDOWS) {
  55             return;
  56         }
  57 
  58         try {
  59 
  60             final Robot robot = new Robot();
  61             robot.setAutoDelay(20);
  62             Util.waitForIdle(robot);
  63 
  64             addWindowListener(new WindowAdapter() {
  65                 @Override
  66                 public void windowClosing(WindowEvent e) {
  67                     System.exit(0);
  68                 }
  69             });
  70 
  71             final Choice choice = new Choice();
  72             choice.add("A");
  73             choice.add("B");
  74             choice.addItemListener(new ItemListener() {




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

  40 
  41 import java.awt.*;
  42 import java.awt.event.*;
  43 
  44 public class ItemStateChangeTest extends Frame {
  45 
  46     int events = 0;
  47 
  48     public static void main(String args[]) {
  49         new ItemStateChangeTest();
  50     }
  51 
  52     public ItemStateChangeTest() {
  53 
  54         if (!Platform.isWindows()) {
  55             return;
  56         }
  57 
  58         try {
  59 
  60             final Robot robot = new Robot();
  61             robot.setAutoDelay(20);
  62             Util.waitForIdle(robot);
  63 
  64             addWindowListener(new WindowAdapter() {
  65                 @Override
  66                 public void windowClosing(WindowEvent e) {
  67                     System.exit(0);
  68                 }
  69             });
  70 
  71             final Choice choice = new Choice();
  72             choice.add("A");
  73             choice.add("B");
  74             choice.addItemListener(new ItemListener() {


< prev index next >