Example usage for org.eclipse.jdt.internal.compiler.lookup CompilationUnitScope recordQualifiedReference

List of usage examples for org.eclipse.jdt.internal.compiler.lookup CompilationUnitScope recordQualifiedReference

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.lookup CompilationUnitScope recordQualifiedReference.

Prototype

void recordQualifiedReference(char[][] qualifiedName) 

Source Link

Usage

From source file:org.codehaus.jdt.groovy.internal.compiler.ast.GroovyClassScope.java

License:Open Source License

public final ReferenceBinding getGroovyLangMetaClassBinding() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(GROOVY_LANG_METACLASS);
    return unitScope.environment.getResolvedType(GROOVY_LANG_METACLASS, this);
}

From source file:org.codehaus.jdt.groovy.internal.compiler.ast.GroovyCompilationUnitScope.java

License:Open Source License

private final ReferenceBinding getGroovyLangObjectBinding() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(GROOVY_LANG_GROOVYOBJECT);
    return unitScope.environment.getResolvedType(GROOVY_LANG_GROOVYOBJECT, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaIoSerializable() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_IO_SERIALIZABLE);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_IO_SERIALIZABLE, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaLangAnnotationAnnotation() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_LANG_ANNOTATION_ANNOTATION);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_LANG_ANNOTATION_ANNOTATION, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaLangAssertionError() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_LANG_ASSERTIONERROR);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_LANG_ASSERTIONERROR, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaLangClass() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_LANG_CLASS);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_LANG_CLASS, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaLangCloneable() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_LANG_CLONEABLE);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_LANG_CLONEABLE, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaLangEnum() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_LANG_ENUM);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_LANG_ENUM, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaLangIterable() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_LANG_ITERABLE);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_LANG_ITERABLE, this);
}

From source file:org.eclipse.jdt.internal.compiler.lookup.Scope.java

License:Open Source License

public final ReferenceBinding getJavaLangObject() {
    CompilationUnitScope unitScope = compilationUnitScope();
    unitScope.recordQualifiedReference(TypeConstants.JAVA_LANG_OBJECT);
    return unitScope.environment.getResolvedType(TypeConstants.JAVA_LANG_OBJECT, this);
}