Example #1
0
 public static long CreateDummyWindow(int x, int y, int width, int height) {
   synchronized (dummyWindowSync) {
     dummyWindowClass = dummyWindowClassFactory.getSharedClass();
     return CreateDummyWindow0(
         dummyWindowClass.getHandle(),
         dummyWindowClass.getName(),
         dummyWindowClass.getName(),
         x,
         y,
         width,
         height);
   }
 }
Example #2
0
 protected String getWindowClassName() {
   return sharedClass.getName();
 }