Package com.google.gwt.dev.util

Examples of com.google.gwt.dev.util.DiskCache


    this.module = module;
    this.genDir = genDir;
    this.generatorResourcesDir = generatorResourcesDir;
    this.allGeneratedArtifacts = allGeneratedArtifacts;
    if (genDir == null && diskCache == null) {
      diskCache = new DiskCache();
    }
  }
View Full Code Here


    types.add(new JClassType(SourceOrigin.UNKNOWN, typeName, false, true));
  }

  @Override
  public CachedCompilationUnit asCachedCompilationUnit() {
    DiskCache diskCache = DiskCache.INSTANCE;
    long astToken = diskCache.writeByteArray(Util.getBytes("Dummy AST data"));
    return new CachedCompilationUnit(this, astToken);
  }
View Full Code Here

    this.module = module;
    this.genDir = genDir;
    this.generatorResourcesDir = generatorResourcesDir;
    this.allGeneratedArtifacts = allGeneratedArtifacts;
    if (genDir == null && diskCache == null) {
      diskCache = new DiskCache();
    }
  }
View Full Code Here

TOP

Related Classes of com.google.gwt.dev.util.DiskCache

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.