Package dtool.engine

Examples of dtool.engine.ModuleParseCache$ModuleEntry


    // repeat
    basicSequence(CU_PATH);
  }
 
  protected void __initModuleParseCache() {
    mpc = new ModuleParseCache(new Tests_DToolServer());
  }
View Full Code Here


      this.offset = offset;
    }
   
    @Override
    protected void performLongRunningComputation_do(IProgressMonitor monitor) throws CoreException {
      ModuleParseCache clientModuleCache = DToolClient.getDefault().getClientModuleCache();
      try {
        clientModuleCache.setWorkingCopyAndGetParsedModule(inputPath, doc.get());
        // This operation actually runs with the client cache, not on engine server
        performLongRunningComputation_withUpdatedServerWorkingCopy();
      } finally {
        if(sourceModule.isWorkingCopy() == false) {
          clientModuleCache.discardWorkingCopy(inputPath);
        }
      }
    }
View Full Code Here

TOP

Related Classes of dtool.engine.ModuleParseCache$ModuleEntry

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.