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

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

Introduction

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

Usage

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

/**
 * Represents a groovy aliased import, something like 'import a.b.c.D as Foo' where Foo will be the alias. JDT creates a map from
 * the simple name for the import to the full type and for a normal import the simple name is the final part of the import. An
 * aliased import can simply return a different simple name to JDT when it is building this map.
 * 
 * @author Andy Clement