test/java/awt/Mixing/AWT_Mixing/JTableOverlapping.java

Print this page




  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 javax.swing.*;
  25 
  26 /**
  27  * AWT/Swing overlapping test for {@link javax.swing.JTable } component.
  28  * <p>See base class for details.
  29  */
  30 /*
  31 @test
  32 @summary Simple Overlapping test for JTable
  33 @author sergey.grinev@oracle.com: area=awt.mixing
  34 @library ../../regtesthelpers
  35 @modules java.desktop/sun.awt

  36 @build Util
  37 @run main JTableOverlapping
  38  */
  39 public class JTableOverlapping extends SimpleOverlappingTestBase {
  40 
  41     @Override
  42     protected JComponent getSwingComponent() {
  43         // Create columns names
  44         String columnNames[] = { "Column 1", "Column 2", "Column 3" };
  45 
  46         // Create some data
  47         String dataValues[][] =
  48         {
  49             { "12", "234", "67" },
  50             { "-123", "43", "853" },
  51             { "93", "89.2", "109" },
  52             { "279", "9033", "3092" },
  53             { "12", "234", "67" },
  54             { "-123", "43", "853" },
  55             { "93", "89.2", "109" },




  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 javax.swing.*;
  25 
  26 /**
  27  * AWT/Swing overlapping test for {@link javax.swing.JTable } component.
  28  * <p>See base class for details.
  29  */
  30 /*
  31 @test
  32 @summary Simple Overlapping test for JTable
  33 @author sergey.grinev@oracle.com: area=awt.mixing
  34 @library ../../regtesthelpers
  35 @modules java.desktop/sun.awt
  36          java.desktop/java.awt.peer
  37 @build Util
  38 @run main JTableOverlapping
  39  */
  40 public class JTableOverlapping extends SimpleOverlappingTestBase {
  41 
  42     @Override
  43     protected JComponent getSwingComponent() {
  44         // Create columns names
  45         String columnNames[] = { "Column 1", "Column 2", "Column 3" };
  46 
  47         // Create some data
  48         String dataValues[][] =
  49         {
  50             { "12", "234", "67" },
  51             { "-123", "43", "853" },
  52             { "93", "89.2", "109" },
  53             { "279", "9033", "3092" },
  54             { "12", "234", "67" },
  55             { "-123", "43", "853" },
  56             { "93", "89.2", "109" },