< prev index next >

test/jdk/java/awt/TrayIcon/ActionCommand/ActionCommand.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 import java.awt.*;
  25 import java.awt.image.BufferedImage;
  26 
  27 /*
  28  * @test

  29  * @summary Check the return value of the getActionCommand method
  30  *          of the ActionEvent triggered when TrayIcon is double clicked
  31  *          (single clicked, on Mac)
  32  * @author Dmitriy Ermashov (dmitriy.ermashov@oracle.com)
  33  * @modules java.desktop/java.awt:open
  34  * @library ../../../../lib/testlibrary ../
  35  * @library /java/awt/patchlib
  36  * @build java.desktop/java.awt.Helper
  37  * @build ExtendedRobot SystemTrayIconHelper
  38  * @run main ActionCommand
  39  */
  40 
  41 public class ActionCommand {
  42 
  43     TrayIcon icon;
  44     ExtendedRobot robot;
  45 
  46     boolean actionPerformed = false;
  47     Object actionLock = new Object();
  48     String actionCommand = null;




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  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 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;


< prev index next >