Uses of Interface
org.eclipse.jdt.core.IMethod

Packages that use IMethod
org.eclipse.jdt.core   
org.eclipse.jdt.internal.codeassist.impl   
org.eclipse.jdt.internal.core   
org.eclipse.jdt.internal.core.search.matching   
org.eclipse.jdt.internal.core.util   
 

Uses of IMethod in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return IMethod
 IMethod IType.createMethod(java.lang.String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
          Creates and returns a method or constructor in this type with the given contents.
 IMethod[] IType.findMethods(IMethod method)
          Finds the methods in this type that correspond to the given method.
 IMethod IType.getMethod(java.lang.String name, java.lang.String[] parameterTypeSignatures)
          Returns the method with the specified name and parameter types in this type (for example, "foo", {"I", "QString;"}).
 IMethod[] IType.getMethods()
          Returns the methods and constructors declared by this type.
 

Methods in org.eclipse.jdt.core with parameters of type IMethod
 IMethod[] IType.findMethods(IMethod method)
          Finds the methods in this type that correspond to the given method.
 boolean IMethod.isSimilar(IMethod method)
          Returns whether this method is similar to the given method.
 

Uses of IMethod in org.eclipse.jdt.internal.codeassist.impl
 

Classes in org.eclipse.jdt.internal.codeassist.impl that implement IMethod
 class AssistSourceMethod
           
 

Methods in org.eclipse.jdt.internal.codeassist.impl that return IMethod
 IMethod AssistSourceType.getMethod(java.lang.String selector, java.lang.String[] parameterTypeSignatures)
           
 

Uses of IMethod in org.eclipse.jdt.internal.core
 

Classes in org.eclipse.jdt.internal.core that implement IMethod
 class ResolvedBinaryMethod
          Handle representing a binary method that is resolved.
 class ResolvedSourceMethod
          Handle representing a source method that is resolved.
 class SourceMethod
           
 

Fields in org.eclipse.jdt.internal.core declared as IMethod
protected static IMethod[] JavaElementRequestor.EMPTY_METHOD_ARRAY
           
 

Methods in org.eclipse.jdt.internal.core that return IMethod
 IMethod SourceType.createMethod(java.lang.String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
           
 IMethod BinaryType.createMethod(java.lang.String contents, IJavaElement sibling, boolean force, IProgressMonitor monitor)
           
 IMethod[] SourceType.findMethods(IMethod method)
           
 IMethod[] BinaryType.findMethods(IMethod method)
           
static IMethod[] Member.findMethods(IMethod method, IMethod[] methods)
           
 IMethod SourceType.getMethod(java.lang.String selector, java.lang.String[] parameterTypeSignatures)
           
 IMethod BinaryType.getMethod(java.lang.String selector, java.lang.String[] parameterTypeSignatures)
           
 IMethod[] SourceType.getMethods()
           
 IMethod[] BinaryType.getMethods()
           
 IMethod[] JavaElementRequestor.getMethods()
           
 

Methods in org.eclipse.jdt.internal.core with parameters of type IMethod
 void IJavaElementRequestor.acceptMethod(IMethod method)
           
 void JavaElementRequestor.acceptMethod(IMethod method)
           
 IMethod[] SourceType.findMethods(IMethod method)
           
 IMethod[] BinaryType.findMethods(IMethod method)
           
static IMethod[] Member.findMethods(IMethod method, IMethod[] methods)
           
static IMethod[] Member.findMethods(IMethod method, IMethod[] methods)
           
protected  java.lang.String NamedMember.getKey(IMethod method, boolean forceOpen)
           
 java.lang.String JavadocContents.getMethodDoc(IMethod child)
           
 char[][] SourceMapper.getMethodParameterNames(IMethod method)
          Returns parameters names for the given method, or null if no parameter names are known for the method.
protected  IJavaElement[] SourceMapper.getUnqualifiedMethodHandle(IMethod method, boolean noDollar)
          Creates a handle that has parameter types that are not fully qualified so that the correct source is found.
protected  boolean Member.isMainMethod(IMethod method)
           
 boolean SourceMethod.isSimilar(IMethod method)
           
protected  void SourceMapper.setMethodParameterNames(IMethod method, char[][] parameterNames)
          Sets the mapping for this method to its parameter names.
 

Uses of IMethod in org.eclipse.jdt.internal.core.search.matching
 

Constructors in org.eclipse.jdt.internal.core.search.matching with parameters of type IMethod
ConstructorPattern(char[] declaringSimpleName, char[] declaringQualification, char[][] parameterQualifications, char[][] parameterSimpleNames, java.lang.String[] parameterSignatures, IMethod method, int limitTo, int matchRule)
           
MethodPattern(char[] selector, char[] declaringQualification, char[] declaringSimpleName, char[] returnQualification, char[] returnSimpleName, java.lang.String returnSignature, char[][] parameterQualifications, char[][] parameterSimpleNames, java.lang.String[] parameterSignatures, IMethod method, int limitTo, int matchRule)
           
 

Uses of IMethod in org.eclipse.jdt.internal.core.util
 

Methods in org.eclipse.jdt.internal.core.util that return IMethod
static IMethod Util.findMethod(IType type, char[] selector, java.lang.String[] paramTypeSignatures, boolean isConstructor)
          Finds the IMethod element corresponding to the given selector, without creating a new dummy instance of a binary method.
 

Methods in org.eclipse.jdt.internal.core.util with parameters of type IMethod
 AbstractMethodDeclaration ASTNodeFinder.findMethod(IMethod methodHandle)