Examples of WindowInfo


Examples of com.opera.core.systems.scope.protos.WmProtos.WindowInfo

    findDriverWindow();
  }

  public void findDriverWindow() {
    JXPathContext pathContext = JXPathContext.newContext(windows.values());
    WindowInfo window = windows.peek();

    if (window == null || !window.getWindowType().equals("normal")) {
      Integer windowId = (Integer) WINDOW_FINDER_EXPRESSION.getValue(pathContext);

      if (windowId != null) {
        setActiveWindowId(windowId);
      } else {
View Full Code Here

Examples of com.opera.core.systems.scope.protos.WmProtos.WindowInfo

          eventHandler.onWindowClosed(closedWindowID);
          break;
        case WINDOW_UPDATED:
          WindowInfo.Builder windowInfoBuilder = WindowInfo.newBuilder();
          buildPayload(event, windowInfoBuilder);
          WindowInfo info = windowInfoBuilder.build();
          eventHandler.onWindowUpdated(info);
          break;
        case WINDOW_LOADED:
          WindowID.Builder loadedWindowBuilder = WindowID.newBuilder();
          buildPayload(event, loadedWindowBuilder);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.