< prev index next >

test/javax/swing/JMenu/8071705/bug8071705.java

Print this page
rev 14836 : 8159690: [TESTBUG] Mark headful tests with @key headful.


   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 /*
  25  * @test

  26  * @bug 8071705
  27  * @summary  Java application menu misbehaves when running multiple screen stacked vertically
  28  * @build bug8071705
  29  * @run main/othervm bug8071705
  30  */
  31 
  32 import java.awt.Dimension;
  33 import java.awt.GraphicsConfiguration;
  34 import java.awt.GraphicsDevice;
  35 import java.awt.GraphicsEnvironment;
  36 import java.awt.Point;
  37 import java.awt.Rectangle;
  38 import java.awt.Toolkit;
  39 import java.awt.event.ComponentAdapter;
  40 import java.awt.event.ComponentEvent;
  41 import java.awt.event.KeyEvent;
  42 import java.util.concurrent.CountDownLatch;
  43 
  44 import javax.swing.JFrame;
  45 import javax.swing.JMenu;




   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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 /*
  25  * @test
  26  * @key headful
  27  * @bug 8071705
  28  * @summary  Java application menu misbehaves when running multiple screen stacked vertically
  29  * @build bug8071705
  30  * @run main/othervm bug8071705
  31  */
  32 
  33 import java.awt.Dimension;
  34 import java.awt.GraphicsConfiguration;
  35 import java.awt.GraphicsDevice;
  36 import java.awt.GraphicsEnvironment;
  37 import java.awt.Point;
  38 import java.awt.Rectangle;
  39 import java.awt.Toolkit;
  40 import java.awt.event.ComponentAdapter;
  41 import java.awt.event.ComponentEvent;
  42 import java.awt.event.KeyEvent;
  43 import java.util.concurrent.CountDownLatch;
  44 
  45 import javax.swing.JFrame;
  46 import javax.swing.JMenu;


< prev index next >