Package org.eclipse.jdt.internal.compiler.util

Examples of org.eclipse.jdt.internal.compiler.util.HashtableOfPackage


}

public void reset() {
  this.defaultPackage = new PackageBinding(this); // assume the default package always exists
  this.defaultImports = null;
  this.knownPackages = new HashtableOfPackage();
  this.accessRestrictions = new HashMap(3);

  this.verifier = null;
  for (int i = this.uniqueArrayBindings.length; --i >= 0;) {
    ArrayBinding[] arrayBindings = this.uniqueArrayBindings[i];
View Full Code Here


  this.globalOptions = globalOptions;
  this.problemReporter = problemReporter;
  this.defaultPackage = new PackageBinding(this); // assume the default package always exists
  this.defaultImports = null;
  this.nameEnvironment = nameEnvironment;
  this.knownPackages = new HashtableOfPackage();
  this.uniqueParameterizedGenericMethodBindings = new SimpleLookupTable(3);
  this.uniquePolymorphicMethodBindings = new SimpleLookupTable(3);
  this.missingTypes = null;
  this.accessRestrictions = new HashMap(3);
  this.classFilePool = ClassFilePool.newInstance();
View Full Code Here

}

public void reset() {
  this.defaultPackage = new PackageBinding(this); // assume the default package always exists
  this.defaultImports = null;
  this.knownPackages = new HashtableOfPackage();
  this.accessRestrictions = new HashMap(3);

  this.verifier = null;
 
  // NOTE: remember to fix #updateCaches(...) when adding unique binding caches
View Full Code Here

TOP

Related Classes of org.eclipse.jdt.internal.compiler.util.HashtableOfPackage

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.