Examples of IdeFrameImpl


Examples of com.intellij.openapi.wm.impl.IdeFrameImpl

      res = (Project) getData(component, CommonDataKeys.PROJECT.getName());
    }
    else {
      IdeFrame[] frames = WindowManagerEx.getInstanceEx().getAllProjectFrames();
      for (IdeFrame frame : frames) {
        final IdeFrameImpl eachFrame = (IdeFrameImpl)frame;
        if (eachFrame.isActive()) {
          res = eachFrame.getProject();
          if (res != null) break;
        }
      }
    }
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.