< prev index next >

test/jdk/java/awt/TrayIcon/ActionCommand/ActionCommand.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 
  24 import java.awt.*;
  25 import java.awt.image.BufferedImage;
  26 
  27 /*
  28  * @test
  29  * @key headful
  30  * @summary Check the return value of the getActionCommand method
  31  *          of the ActionEvent triggered when TrayIcon is double clicked
  32  *          (single clicked, on Mac)
  33  * @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
  34  * @modules java.desktop/java.awt:open
  35  * @library ../../../../lib/testlibrary ../
  36  * @library /java/awt/patchlib
  37  * @build java.desktop/java.awt.Helper
  38  * @build ExtendedRobot SystemTrayIconHelper
  39  * @run main ActionCommand
  40  */
  41 
  42 public class ActionCommand {
  43 
  44     TrayIcon icon;
  45     ExtendedRobot robot;
  46 
  47     boolean actionPerformed = false;
  48     Object actionLock = new Object();
  49     String actionCommand = null;
  50     static boolean isMacOS = false;
  51 
  52     public static void main(String[] args) throws Exception {
  53         if (! SystemTray.isSupported()) {
  54             System.out.println("SystemTray not supported on the platform under test. " +
  55                     "Marking the test passed");




  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 import java.awt.*;
  25 import java.awt.image.BufferedImage;
  26 
  27 /*
  28  * @test
  29  * @key headful
  30  * @summary Check the return value of the getActionCommand method
  31  *          of the ActionEvent triggered when TrayIcon is double clicked
  32  *          (single clicked, on Mac)
  33  * @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
  34  * @modules java.desktop/java.awt:open
  35  * @library ../../../../lib/client ../
  36  * @library /java/awt/patchlib
  37  * @build java.desktop/java.awt.Helper
  38  * @build ExtendedRobot SystemTrayIconHelper
  39  * @run main ActionCommand
  40  */
  41 
  42 public class ActionCommand {
  43 
  44     TrayIcon icon;
  45     ExtendedRobot robot;
  46 
  47     boolean actionPerformed = false;
  48     Object actionLock = new Object();
  49     String actionCommand = null;
  50     static boolean isMacOS = false;
  51 
  52     public static void main(String[] args) throws Exception {
  53         if (! SystemTray.isSupported()) {
  54             System.out.println("SystemTray not supported on the platform under test. " +
  55                     "Marking the test passed");


< prev index next >