< prev index next >

test/jdk/java/awt/Frame/MiscUndecorated/ActiveAWTWindowTest.java

Print this page




  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  * @test
  26  * @key headful
  27  * @summary To check proper WINDOW_EVENTS are triggered when Frame gains or losses the focus
  28  * @author Jitender(jitender.singh@eng.sun.com) area=AWT
  29  * @author yan
  30  * @library ../../../../lib/testlibrary
  31  * @build ExtendedRobot
  32  * @run main ActiveAWTWindowTest
  33  */
  34 
  35 import java.awt.*;
  36 import java.awt.event.*;
  37 
  38 public class ActiveAWTWindowTest {
  39 
  40     private Frame frame, frame2;
  41     private Button button, button2;
  42     private TextField textField, textField2;
  43     private int eventType, eventType1;
  44     private ExtendedRobot robot;
  45     private Object lock1 = new Object();
  46     private Object lock2 = new Object();
  47     private Object lock3 = new Object();
  48     private boolean passed = true;
  49     private int delay = 150;
  50 




  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  * @test
  26  * @key headful
  27  * @summary To check proper WINDOW_EVENTS are triggered when Frame gains or losses the focus
  28  * @author Jitender(jitender.singh@eng.sun.com) area=AWT
  29  * @author yan
  30  * @library ../../../../lib/client
  31  * @build ExtendedRobot
  32  * @run main ActiveAWTWindowTest
  33  */
  34 
  35 import java.awt.*;
  36 import java.awt.event.*;
  37 
  38 public class ActiveAWTWindowTest {
  39 
  40     private Frame frame, frame2;
  41     private Button button, button2;
  42     private TextField textField, textField2;
  43     private int eventType, eventType1;
  44     private ExtendedRobot robot;
  45     private Object lock1 = new Object();
  46     private Object lock2 = new Object();
  47     private Object lock3 = new Object();
  48     private boolean passed = true;
  49     private int delay = 150;
  50 


< prev index next >