< prev index next >

test/jdk/java/awt/TrayIcon/TrayIconPopup/TrayIconPopupTest.java

Print this page




  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 import java.awt.*;
  24 import java.awt.event.*;
  25 import java.awt.image.BufferedImage;
  26 
  27 /*
  28  * @test
  29  * @key headful
  30  * @summary Check if a JPopupMenu can be displayed when TrayIcon is
  31  *          right clicked. It uses a JWindow as the parent of the JPopupMenu
  32  * @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
  33  * @modules java.desktop/java.awt:open
  34  * @library /java/awt/patchlib
  35  * @library ../../../../lib/testlibrary ../
  36  * @build java.desktop/java.awt.Helper
  37  * @build ExtendedRobot SystemTrayIconHelper
  38  * @run main TrayIconPopupTest
  39  */
  40 
  41 public class TrayIconPopupTest {
  42 
  43     TrayIcon icon;
  44     ExtendedRobot robot;
  45 
  46     boolean actionPerformed = false;
  47     Object actionLock = new Object();
  48     static final int ATTEMPTS = 50;
  49 
  50     PopupMenu popup;
  51     Dialog window;
  52 
  53     public static void main(String[] args) throws Exception {
  54         if (!SystemTray.isSupported()) {
  55             System.out.println("SystemTray not supported on the platform under test. " +




  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 import java.awt.*;
  24 import java.awt.event.*;
  25 import java.awt.image.BufferedImage;
  26 
  27 /*
  28  * @test
  29  * @key headful
  30  * @summary Check if a JPopupMenu can be displayed when TrayIcon is
  31  *          right clicked. It uses a JWindow as the parent of the JPopupMenu
  32  * @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
  33  * @modules java.desktop/java.awt:open
  34  * @library /java/awt/patchlib
  35  * @library ../../../../lib/client ../
  36  * @build java.desktop/java.awt.Helper
  37  * @build ExtendedRobot SystemTrayIconHelper
  38  * @run main TrayIconPopupTest
  39  */
  40 
  41 public class TrayIconPopupTest {
  42 
  43     TrayIcon icon;
  44     ExtendedRobot robot;
  45 
  46     boolean actionPerformed = false;
  47     Object actionLock = new Object();
  48     static final int ATTEMPTS = 50;
  49 
  50     PopupMenu popup;
  51     Dialog window;
  52 
  53     public static void main(String[] args) throws Exception {
  54         if (!SystemTray.isSupported()) {
  55             System.out.println("SystemTray not supported on the platform under test. " +


< prev index next >