1 /*
   2  * Copyright (c) 2004, 2014, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   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 import java.awt.*;
  25 import java.awt.Label;
  26 
  27 /*
  28  * @test
  29  * @summary Create and dispose the Window
  30  * @author Aruna Samji
  31  * @library ../../../lib/testlibrary
  32  * @build ExtendedRobot
  33  * @run main TaskWindow
  34  */
  35 
  36 public class TaskWindow extends Task<GUIComponent> {
  37 
  38     Frame frame;
  39     Window window;
  40     Panel panel;
  41     Button button;
  42     Canvas canvas;
  43     Checkbox checkbox;
  44     Choice choice;
  45     Container container;
  46     Label label;
  47     List list;
  48     Scrollbar scrollbar;
  49     TextArea textarea;
  50     TextField textfield;
  51 
  52     public static void main (String[] args) throws Exception {
  53         new TaskWindow(new GUIComponent(), new ExtendedRobot()).runTask();
  54     }
  55 
  56     TaskWindow(GUIComponent gui, ExtendedRobot robot){
  57         super(gui, robot);
  58     }
  59 
  60     public void task() throws Exception {
  61 
  62         for (int i = 0; i < 10; i++) {
  63             frame = new Frame("WindowTest");
  64             window = new Window(frame);
  65             window.setBackground(Color.red);
  66             window.setSize(600, 270);
  67 
  68             panel = new Panel();
  69 
  70             container = new Container();
  71             container.setLayout(new FlowLayout());
  72 
  73             button = new Button("Button");
  74             canvas = new Canvas();
  75 
  76             checkbox = new Checkbox("CheckBox");
  77             choice = new Choice();
  78             choice.add("Choice 1");
  79             choice.add("Choice 2");
  80             choice.add("Choice 3");
  81             choice.add("Choice 4");
  82 
  83             label = new Label("Label");
  84             list = new List(2);
  85             list.add("list 1");
  86             list.add("list 2");
  87             list.add("list 3");
  88             scrollbar = new Scrollbar();
  89 
  90             textarea = new TextArea("TextArea", 3, 10);
  91             textfield = new TextField("TextField");
  92 
  93             container.add(button);
  94             container.add(canvas);
  95             container.add(checkbox);
  96             container.add(choice);
  97             container.add(label);
  98             container.add(list);
  99             container.add(scrollbar);
 100             container.add(textarea);
 101             container.add(textfield);
 102 
 103             panel.add(container);
 104             window.add(panel);
 105 
 106             window.setVisible(true);
 107             robot.waitForIdle(1000);
 108 
 109             container.remove(button);
 110             container.remove(canvas);
 111             container.remove(checkbox);
 112             container.remove(choice);
 113             container.remove(label);
 114             container.remove(list);
 115             container.remove(scrollbar);
 116             container.remove(textarea);
 117             container.remove(textfield);
 118 
 119             panel.remove(container);
 120             window.remove(panel);
 121             window.dispose();
 122             frame.dispose();
 123             robot.waitForIdle(1000);
 124         }
 125     }
 126 }