Eclipse JDT
Release 3.0

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

Packages that use IMethod
org.eclipse.jdt.core The Java model is the set of classes that model the objects associated with creating, editing, and building a Java program.  
org.eclipse.jdt.ui Application programming interfaces for interaction with the Eclipse Java User Interface.  
org.eclipse.jdt.ui.actions Application programming interfaces for Eclipse Java User Interface specific actions.  
org.eclipse.jdt.ui.refactoring Application programming interfaces for rename refactorings.  
org.eclipse.jdt.ui.wizards Application programming interfaces for interaction with the Eclipse Java User Interface wizards.  
 

Uses of IMethod in org.eclipse.jdt.core
 

Methods in org.eclipse.jdt.core that return IMethod
 IMethod IType.createMethod(String contents, IJavaElement sibling, boolean force, org.eclipse.core.runtime.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(String name, 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.ui
 

Methods in org.eclipse.jdt.ui with parameters of type IMethod
protected  int OverrideIndicatorLabelDecorator.getOverrideIndicators(IMethod method)
          Note: This method is for internal use only.
static String CodeGeneration.getMethodComment(ICompilationUnit cu, String declaringTypeName, String methodName, String[] paramNames, String[] excTypeSig, String retTypeSig, IMethod overridden, String lineDelimiter)
          Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).
static String CodeGeneration.getMethodComment(IMethod method, IMethod overridden, String lineDelimiter)
          Returns the comment for a method or constructor using the comment code templates (constructor / method / overriding method).
 

Uses of IMethod in org.eclipse.jdt.ui.actions
 

Methods in org.eclipse.jdt.ui.actions with parameters of type IMethod
 void OpenSuperImplementationAction.run(IMethod method)
           
 

Uses of IMethod in org.eclipse.jdt.ui.refactoring
 

Methods in org.eclipse.jdt.ui.refactoring with parameters of type IMethod
static RenameSupport RenameSupport.create(IMethod method, String newName, int flags)
          Creates a new rename support for the given IMethod.
 

Uses of IMethod in org.eclipse.jdt.ui.wizards
 

Methods in org.eclipse.jdt.ui.wizards that return IMethod
protected  IMethod[] NewTypeWizardPage.createInheritedMethods(IType type, boolean doConstructors, boolean doUnimplementedMethods, NewTypeWizardPage.ImportsManager imports, org.eclipse.core.runtime.IProgressMonitor monitor)
          Creates the bodies of all unimplemented methods and constructors and adds them to the type.
protected  IMethod[] NewTypeWizardPage.createInheritedMethods(IType type, boolean doConstructors, boolean doUnimplementedMethods, org.eclipse.jdt.internal.corext.codemanipulation.IImportsStructure imports, org.eclipse.core.runtime.IProgressMonitor monitor)
          Deprecated. Use createInheritedMethods(IType,boolean,boolean,IImportsManager,IProgressMonitor)
 


Eclipse JDT
Release 3.0

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