Example #1
0
 /**
  * Find the FIRST top level window with specified class and title.
  *
  * @param className such as "SWT_Window0" or null
  * @param title such as "QREADS" or null
  * @return first window found, or null if not found.
  */
 public static Window findWindow(String className, String title) {
   return new Window(User32.INSTANCE.FindWindow(className, title));
 }