Example usage for org.eclipse.jdt.internal.compiler.ast SingleTypeReference subclass-usage

List of usage examples for org.eclipse.jdt.internal.compiler.ast SingleTypeReference subclass-usage

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.compiler.ast SingleTypeReference subclass-usage.

Usage

From source file org.eclipse.objectteams.otdt.internal.core.compiler.util.IAlienScopeTypeReference.java

class AlienScopeSingleTypeReference extends SingleTypeReference implements IAlienScopeTypeReference {
    Scope alienScope;

    public AlienScopeSingleTypeReference(char[] source, long pos, Scope alienScope) {
        super(source, pos);
        this.alienScope = alienScope;