Example usage for org.eclipse.jdt.internal.core JavaProject newNameLookup

List of usage examples for org.eclipse.jdt.internal.core JavaProject newNameLookup

Introduction

In this page you can find the example usage for org.eclipse.jdt.internal.core JavaProject newNameLookup.

Prototype

public NameLookup newNameLookup(WorkingCopyOwner owner) throws JavaModelException 

Source Link

Usage

From source file:org.eclipse.xtext.common.types.access.jdt.JdtTypeProvider.java

License:Open Source License

private NameLookup getNameLookup(JavaProject casted) throws JavaModelException {
    return casted.newNameLookup(getWorkingCopies());
}