< prev index next >

test/javax/swing/JTabbedPane/7161568/bug7161568.java

Print this page
rev 14989 : 8160974: [TESTBUG] Mark more headful tests with @key headful.


   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 import java.awt.*;
  24 import javax.swing.*;
  25 import java.awt.event.*;
  26 
  27 /**
  28  * @test

  29  * @bug 7161568
  30  * @author Alexander Scherbatiy
  31  * @summary Tests that navigating tabs in the JTAbbedPane does not throw NPE
  32  * @run main bug7161568
  33  */
  34 public class bug7161568 {
  35 
  36     private static final int N = 50;
  37     private static JTabbedPane tabbedPane;
  38 
  39     public static void main(String[] args) throws Exception {
  40         UIManager.put("TabbedPane.selectionFollowsFocus", Boolean.FALSE);
  41 
  42         Robot robot = new Robot();
  43         robot.setAutoDelay(50);
  44 
  45         SwingUtilities.invokeAndWait(new Runnable() {
  46 
  47             @Override
  48             public void run() {




   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 import java.awt.*;
  24 import javax.swing.*;
  25 import java.awt.event.*;
  26 
  27 /**
  28  * @test
  29  * @key headful
  30  * @bug 7161568
  31  * @author Alexander Scherbatiy
  32  * @summary Tests that navigating tabs in the JTAbbedPane does not throw NPE
  33  * @run main bug7161568
  34  */
  35 public class bug7161568 {
  36 
  37     private static final int N = 50;
  38     private static JTabbedPane tabbedPane;
  39 
  40     public static void main(String[] args) throws Exception {
  41         UIManager.put("TabbedPane.selectionFollowsFocus", Boolean.FALSE);
  42 
  43         Robot robot = new Robot();
  44         robot.setAutoDelay(50);
  45 
  46         SwingUtilities.invokeAndWait(new Runnable() {
  47 
  48             @Override
  49             public void run() {


< prev index next >