< prev index next >

test/jdk/java/awt/Window/AlwaysOnTop/AutoTestOnTop.java

Print this page
rev 59106 : imported patch client


 110     static final int stagesCount = 7;
 111     static final int actionsCount = 9;
 112 
 113     static Method[] preActions = new Method[actionsCount];
 114     static Method[] postActions = new Method[actionsCount];
 115     static Method[] isActionsAllowed = new Method[actionsCount];
 116     static Method[] checksActionEvents = new Method[actionsCount];
 117 
 118     static Robot robot;
 119 
 120     static boolean doStartTest;
 121     static String osName = System.getProperty("os.name");
 122 
 123 
 124     public static void main(String[] args) {
 125         checkTesting();
 126 
 127     }
 128 
 129     public static void performTesting() {
 130         isUnix = osName.equals("Linux") || osName.equals("SunOS");
 131 
 132         Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
 133                 public void eventDispatched(AWTEvent e) {
 134                     if (e.getID() == MouseEvent.MOUSE_CLICKED) {
 135                         if (eventSrc != null & eventSrc != uncheckedSrc && e.getSource() != eventSrc) {
 136                             error("Test failed: stage #" + stageNum + ", action # " + actNum + ": " + msgCase + ": " + msgAction + ": " + msgError);
 137                             testResult = -1;
 138                         }
 139                         if (eventSrc != null){
 140                             synchronized (eventSrc) {
 141                                 dispatchedCond = true;
 142                                 eventSrc.notify();
 143                             }
 144                         }
 145                     }
 146 
 147                     if (doCheckEvents && (e.getSource() == topw || e.getSource() == f)) {
 148 
 149                         //System.err.println("AWTEventListener: catched the event " + e);
 150 




 110     static final int stagesCount = 7;
 111     static final int actionsCount = 9;
 112 
 113     static Method[] preActions = new Method[actionsCount];
 114     static Method[] postActions = new Method[actionsCount];
 115     static Method[] isActionsAllowed = new Method[actionsCount];
 116     static Method[] checksActionEvents = new Method[actionsCount];
 117 
 118     static Robot robot;
 119 
 120     static boolean doStartTest;
 121     static String osName = System.getProperty("os.name");
 122 
 123 
 124     public static void main(String[] args) {
 125         checkTesting();
 126 
 127     }
 128 
 129     public static void performTesting() {
 130         isUnix = osName.equals("Linux");
 131 
 132         Toolkit.getDefaultToolkit().addAWTEventListener(new AWTEventListener() {
 133                 public void eventDispatched(AWTEvent e) {
 134                     if (e.getID() == MouseEvent.MOUSE_CLICKED) {
 135                         if (eventSrc != null & eventSrc != uncheckedSrc && e.getSource() != eventSrc) {
 136                             error("Test failed: stage #" + stageNum + ", action # " + actNum + ": " + msgCase + ": " + msgAction + ": " + msgError);
 137                             testResult = -1;
 138                         }
 139                         if (eventSrc != null){
 140                             synchronized (eventSrc) {
 141                                 dispatchedCond = true;
 142                                 eventSrc.notify();
 143                             }
 144                         }
 145                     }
 146 
 147                     if (doCheckEvents && (e.getSource() == topw || e.getSource() == f)) {
 148 
 149                         //System.err.println("AWTEventListener: catched the event " + e);
 150 


< prev index next >