< prev index next >

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

  29  * @bug 7090424
  30  * @author Sergey Bylokhov
  31  * @library ../../../lib/testlibrary/
  32  * @build ExtendedRobot
  33  * @run main ExposeOnEDT
  34  */
  35 public final class ExposeOnEDT {
  36 
  37     private static ExtendedRobot robot = null;
  38     private static final Button buttonStub = new Button() {
  39         @Override
  40         public void paint(final Graphics g) {
  41             buttonPainted = true;
  42             if (!EventQueue.isDispatchThread()) {
  43                 throw new RuntimeException("Wrong thread");
  44             }
  45         }
  46     };
  47     private static final Canvas canvasStub = new Canvas() {
  48         @Override




   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 import java.awt.*;
  26 
  27 /**
  28  * @test
  29  * @key headful
  30  * @bug 7090424
  31  * @author Sergey Bylokhov
  32  * @library ../../../lib/testlibrary/
  33  * @build ExtendedRobot
  34  * @run main ExposeOnEDT
  35  */
  36 public final class ExposeOnEDT {
  37 
  38     private static ExtendedRobot robot = null;
  39     private static final Button buttonStub = new Button() {
  40         @Override
  41         public void paint(final Graphics g) {
  42             buttonPainted = true;
  43             if (!EventQueue.isDispatchThread()) {
  44                 throw new RuntimeException("Wrong thread");
  45             }
  46         }
  47     };
  48     private static final Canvas canvasStub = new Canvas() {
  49         @Override


< prev index next >