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

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


private void addNotFoundPackage(char[] simpleName) {
  this.knownPackages.put(simpleName, LookupEnvironment.TheNotFoundPackage);
}
private void addNotFoundType(char[] simpleName) {
  if (this.knownTypes == null)
    this.knownTypes = new HashtableOfType(25);
  this.knownTypes.put(simpleName, LookupEnvironment.TheNotFoundType);
}
View Full Code Here


  this.knownPackages.put(element.compoundName[element.compoundName.length - 1], element);
}
void addType(ReferenceBinding element) {
  if ((element.tagBits & TagBits.HasMissingType) == 0) clearMissingTagBit();
  if (this.knownTypes == null)
    this.knownTypes = new HashtableOfType(25);
  this.knownTypes.put(element.compoundName[element.compoundName.length - 1], element);
}
View Full Code Here

private void addNotFoundPackage(char[] simpleName) {
  this.knownPackages.put(simpleName, LookupEnvironment.TheNotFoundPackage);
}
private void addNotFoundType(char[] simpleName) {
  if (this.knownTypes == null)
    this.knownTypes = new HashtableOfType(25);
  this.knownTypes.put(simpleName, LookupEnvironment.TheNotFoundType);
}
View Full Code Here

  this.knownPackages.put(element.compoundName[element.compoundName.length - 1], element);
}
void addType(ReferenceBinding element) {
  if ((element.tagBits & TagBits.HasMissingType) == 0) clearMissingTagBit();
  if (this.knownTypes == null)
    this.knownTypes = new HashtableOfType(25);
  char [] name = element.compoundName[element.compoundName.length - 1];
  ReferenceBinding priorType = this.knownTypes.getput(name, element);
  if (priorType != null && priorType.isUnresolvedType() && !element.isUnresolvedType()) {
    ((UnresolvedReferenceBinding) priorType).setResolvedType(element, this.environment);
  }
View Full Code Here

private void addNotFoundPackage(char[] simpleName) {
  this.knownPackages.put(simpleName, LookupEnvironment.TheNotFoundPackage);
}
private void addNotFoundType(char[] simpleName) {
  if (this.knownTypes == null)
    this.knownTypes = new HashtableOfType(25);
  this.knownTypes.put(simpleName, LookupEnvironment.TheNotFoundType);
}
View Full Code Here

  this.knownPackages.put(element.compoundName[element.compoundName.length - 1], element);
}
void addType(ReferenceBinding element) {
  if ((element.tagBits & TagBits.HasMissingType) == 0) clearMissingTagBit();
  if (this.knownTypes == null)
    this.knownTypes = new HashtableOfType(25);
  this.knownTypes.put(element.compoundName[element.compoundName.length - 1], element);
  if (this.environment.globalOptions.isAnnotationBasedNullAnalysisEnabled)
    if (element.isAnnotationType() || element instanceof UnresolvedReferenceBinding) // unresolved types don't yet have the modifiers set
      checkIfNullAnnotationType(element);
}
View Full Code Here

TOP

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

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.