test/java/awt/Mixing/AWT_Mixing/JColorChooserOverlapping.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.JColorChooser } component.
  28  * <p>See base class for details.
  29  */
  30 /*
  31 @test
  32 @summary Simple Overlapping test for javax.swing.JColorChooser
  33 @author sergey.grinev@oracle.com: area=awt.mixing
  34 @library ../../regtesthelpers
  35 @modules java.desktop/sun.awt

  36 @build Util
  37 @run main JColorChooserOverlapping
  38  */
  39 public class JColorChooserOverlapping extends SimpleOverlappingTestBase {
  40 
  41     public JColorChooserOverlapping() {
  42         super(false);
  43     }
  44 
  45     @Override
  46     protected JComponent getSwingComponent() {
  47         wasLWClicked = true;
  48         JColorChooser ch = new JColorChooser();
  49         return ch;
  50     }
  51 
  52     // this strange plumbing stuff is required due to "Standard Test Machinery" in base class
  53     public static void main(String args[]) throws InterruptedException {
  54         instance = new JColorChooserOverlapping();
  55         OverlappingTestBase.doMain(args);


  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.JColorChooser } component.
  28  * <p>See base class for details.
  29  */
  30 /*
  31 @test
  32 @summary Simple Overlapping test for javax.swing.JColorChooser
  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 JColorChooserOverlapping
  39  */
  40 public class JColorChooserOverlapping extends SimpleOverlappingTestBase {
  41 
  42     public JColorChooserOverlapping() {
  43         super(false);
  44     }
  45 
  46     @Override
  47     protected JComponent getSwingComponent() {
  48         wasLWClicked = true;
  49         JColorChooser ch = new JColorChooser();
  50         return ch;
  51     }
  52 
  53     // this strange plumbing stuff is required due to "Standard Test Machinery" in base class
  54     public static void main(String args[]) throws InterruptedException {
  55         instance = new JColorChooserOverlapping();
  56         OverlappingTestBase.doMain(args);