Example usage for org.eclipse.jdt.core.dom TypeDeclarationStatement resolveBinding

List of usage examples for org.eclipse.jdt.core.dom TypeDeclarationStatement resolveBinding

Introduction

In this page you can find the example usage for org.eclipse.jdt.core.dom TypeDeclarationStatement resolveBinding.

Prototype

public ITypeBinding resolveBinding() 

Source Link

Document

Resolves and returns the binding for the class or interface declared in this type declaration statement.

Usage

From source file:edu.cmu.cs.crystal.internal.WorkspaceUtilities.java

License:Open Source License

public boolean visit(TypeDeclarationStatement node) {
    addNewBinding(node.resolveBinding(), node);
    return true;
}