Eclipse JDT
Release 3.1

Uses of Interface
org.eclipse.jdt.core.dom.IBinding

Packages that use IBinding
org.eclipse.jdt.core.dom The Java DOM/AST is the set of classes that model the source code of a Java program as a structured document.  
 

Uses of IBinding in org.eclipse.jdt.core.dom
 

Subinterfaces of IBinding in org.eclipse.jdt.core.dom
 interface IMethodBinding
          A method binding represents a method or constructor of a class or interface.
 interface IPackageBinding
          A package binding represents a named or unnamed package.
 interface ITypeBinding
          A type binding represents fully-resolved type.
 interface IVariableBinding
          A variable binding represents either a field of a class or interface, or a local variable declaration (including formal parameters, local variables, and exception variables).
 

Methods in org.eclipse.jdt.core.dom that return IBinding
 IBinding Name.resolveBinding()
          Resolves and returns the binding for the entity referred to by this name.
 IBinding MethodRef.resolveBinding()
          Resolves and returns the binding for the entity referred to by this method reference.
 IBinding MemberRef.resolveBinding()
          Resolves and returns the binding for the entity referred to by this member reference.
 IBinding ImportDeclaration.resolveBinding()
          Resolves and returns the binding for the package, type, field, or method named in this import declaration.
 IBinding[] ASTRequestor.createBindings(String[] bindingKeys)
          Resolves bindings for the given binding keys.
 IBinding[] ASTParser.createBindings(IJavaElement[] elements, IProgressMonitor monitor)
          Creates bindings for a batch of Java elements.
 

Methods in org.eclipse.jdt.core.dom with parameters of type IBinding
 boolean IBinding.isEqualTo(IBinding binding)
          Returns whether this binding has the same key as that of the given binding.
 ASTNode CompilationUnit.findDeclaringNode(IBinding binding)
          Finds the corresponding AST node in the given compilation unit from which the given binding originated.
 void ASTRequestor.acceptBinding(String bindingKey, IBinding binding)
          Accepts a binding corresponding to the binding key.
 


Eclipse JDT
Release 3.1

Copyright (c) IBM Corp. and others 2000, 2005. All Rights Reserved.