Package com.intellij.openapi.wm.impl

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

Related Classes of com.intellij.openapi.wm.impl.IdeFrameImpl

Copyright © 2018 www.massapicom. 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.