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

Packages that use IMethodBinding
org.eclipse.jdt.core.dom   
 

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

Methods in org.eclipse.jdt.core.dom that return IMethodBinding
 IMethodBinding[] ITypeBinding.getDeclaredMethods()
          Returns a list of method bindings representing all the methods and constructors declared for this class, interface, enum, or annotation type.
 IMethodBinding IVariableBinding.getDeclaringMethod()
          Returns the method binding representing the method containing the scope in which this local variable is declared.
 IMethodBinding ITypeBinding.getDeclaringMethod()
          Returns the method binding representing the method that declares this binding of a local type or type variable.
 IMethodBinding IMemberValuePairBinding.getMethodBinding()
          Returns the method binding corresponding to the named annotation type member.
 IMethodBinding IMethodBinding.getMethodDeclaration()
          Returns the binding for the method declaration corresponding to this method binding.
 IMethodBinding MethodDeclaration.resolveBinding()
          Resolves and returns the binding for the method or constructor declared in this method or constructor declaration.
 IMethodBinding AnnotationTypeMemberDeclaration.resolveBinding()
          Resolves and returns the binding for the annotation type member declared in this declaration.
 IMethodBinding ClassInstanceCreation.resolveConstructorBinding()
          Resolves and returns the binding for the constructor invoked by this expression.
 IMethodBinding ConstructorInvocation.resolveConstructorBinding()
          Resolves and returns the binding for the constructor invoked by this expression.
 IMethodBinding EnumConstantDeclaration.resolveConstructorBinding()
          Resolves and returns the binding for the constructor invoked by this enum constant.
 IMethodBinding SuperConstructorInvocation.resolveConstructorBinding()
          Resolves and returns the binding for the constructor invoked by this expression.
 IMethodBinding MethodInvocation.resolveMethodBinding()
          Resolves and returns the binding for the method invoked by this expression.
 IMethodBinding SuperMethodInvocation.resolveMethodBinding()
          Resolves and returns the binding for the method invoked by this expression.
 

Methods in org.eclipse.jdt.core.dom with parameters of type IMethodBinding
 boolean IMethodBinding.isSubsignature(IMethodBinding otherMethod)
          Returns whether this method's signature is a subsignature of the given method as specified in section 8.4.2 of The Java Language Specification, Third Edition (JLS3).
 boolean IMethodBinding.overrides(IMethodBinding method)
          Returns whether this method overrides the given method, as specified in section 8.4.8.1 of The Java Language Specification, Third Edition (JLS3).