Package com.intellij.openapi.application

Examples of com.intellij.openapi.application.ReadAction


  public Module getModule() {
    return myModule;
  }

  public void buildStarted(final CompileContext context) {
    new ReadAction() {
      protected void run(final Result result) {
        ConfigFile[] descriptors = getDeploymentDescriptors();
        for (ConfigFile descriptor : descriptors) {
          DeploymentUtil.getInstance().checkConfigFile(descriptor, context, myModule);
        }
View Full Code Here

TOP

Related Classes of com.intellij.openapi.application.ReadAction

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.