test/java/awt/Menu/OpensWithNoGrab/OpensWithNoGrab.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 6354721
  27   @summary REG: Menu does not disappear when clicked, keeping Choice's drop-down open, XToolkit
  28   @author andrei.dmitriev: area=awt.menu
  29   @library ../../regtesthelpers


  30   @build Util
  31   @run main OpensWithNoGrab
  32 */
  33 
  34 import java.awt.*;
  35 import java.awt.event.*;
  36 
  37 import sun.awt.OSInfo;
  38 import test.java.awt.regtesthelpers.Util;
  39 
  40 public class OpensWithNoGrab
  41 {
  42     final static int delay = 50;
  43     private static void init()
  44     {
  45         String[] instructions =
  46         {
  47             "This is an AUTOMATIC test, simply wait until it is done.",
  48             "The result (passed or failed) will be shown in the",
  49             "message window below."
  50         };
  51         Sysout.createDialog( );
  52         Sysout.printInstructions( instructions );
  53 
  54         if (!(OSInfo.getOSType().equals(OSInfo.OSType.LINUX)
  55                 || OSInfo.getOSType().equals(OSInfo.OSType.SOLARIS))) {
  56             System.out.println("This test is for XAWT/Motif only");
  57             OpensWithNoGrab.pass();




  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 6354721
  27   @summary REG: Menu does not disappear when clicked, keeping Choice's drop-down open, XToolkit
  28   @author andrei.dmitriev: area=awt.menu
  29   @library ../../regtesthelpers
  30   @library ../../../../lib/testlibrary
  31   @build jdk.testlibrary.OSInfo
  32   @build Util
  33   @run main OpensWithNoGrab
  34 */
  35 
  36 import java.awt.*;
  37 import java.awt.event.*;
  38 
  39 import jdk.testlibrary.OSInfo;
  40 import test.java.awt.regtesthelpers.Util;
  41 
  42 public class OpensWithNoGrab
  43 {
  44     final static int delay = 50;
  45     private static void init()
  46     {
  47         String[] instructions =
  48         {
  49             "This is an AUTOMATIC test, simply wait until it is done.",
  50             "The result (passed or failed) will be shown in the",
  51             "message window below."
  52         };
  53         Sysout.createDialog( );
  54         Sysout.printInstructions( instructions );
  55 
  56         if (!(OSInfo.getOSType().equals(OSInfo.OSType.LINUX)
  57                 || OSInfo.getOSType().equals(OSInfo.OSType.SOLARIS))) {
  58             System.out.println("This test is for XAWT/Motif only");
  59             OpensWithNoGrab.pass();