|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IMethod
Represents a method (or constructor) declared in a type.
Field Summary |
---|
Fields inherited from interface org.eclipse.jdt.core.IJavaElement |
---|
ANNOTATION, CLASS_FILE, COMPILATION_UNIT, FIELD, IMPORT_CONTAINER, IMPORT_DECLARATION, INITIALIZER, JAVA_MODEL, JAVA_PROJECT, LOCAL_VARIABLE, METHOD, PACKAGE_DECLARATION, PACKAGE_FRAGMENT, PACKAGE_FRAGMENT_ROOT, TYPE, TYPE_PARAMETER |
Method Summary | |
---|---|
IMemberValuePair |
getDefaultValue()
Returns a member value pair representing the default
value of this method if any, or null if this method's parent is
not an annotation type, or else if this method does not have a default value. |
java.lang.String |
getElementName()
Returns the simple name of this method. |
java.lang.String[] |
getExceptionTypes()
Returns the type signatures of the exceptions this method throws, in the order declared in the source. |
java.lang.String |
getKey()
Returns the binding key for this method. |
int |
getNumberOfParameters()
Returns the number of parameters of this method. |
java.lang.String[] |
getParameterNames()
Returns the names of parameters in this method. |
java.lang.String[] |
getParameterTypes()
Returns the type signatures for the parameters of this method. |
java.lang.String[] |
getRawParameterNames()
Returns the names of parameters in this method. |
java.lang.String |
getReturnType()
Returns the type signature of the return value of this method. |
java.lang.String |
getSignature()
Returns the signature of this method. |
ITypeParameter |
getTypeParameter(java.lang.String name)
Returns the type parameter declared in this method with the given name. |
ITypeParameter[] |
getTypeParameters()
Returns the formal type parameters for this method. |
java.lang.String[] |
getTypeParameterSignatures()
Deprecated. Use getTypeParameters() instead |
boolean |
isConstructor()
Returns whether this method is a constructor. |
boolean |
isMainMethod()
Returns whether this method is a main method. |
boolean |
isResolved()
Returns whether this method represents a resolved method. |
boolean |
isSimilar(IMethod method)
Returns whether this method is similar to the given method. |
Methods inherited from interface org.eclipse.jdt.core.IMember |
---|
getCategories, getClassFile, getCompilationUnit, getDeclaringType, getFlags, getJavadocRange, getNameRange, getOccurrenceCount, getType, getTypeRoot, isBinary |
Methods inherited from interface org.eclipse.jdt.core.IJavaElement |
---|
exists, getAncestor, getAttachedJavadoc, getCorrespondingResource, getElementType, getHandleIdentifier, getJavaModel, getJavaProject, getOpenable, getParent, getPath, getPrimaryElement, getResource, getSchedulingRule, getUnderlyingResource, isReadOnly, isStructureKnown |
Methods inherited from interface org.eclipse.core.runtime.IAdaptable |
---|
getAdapter |
Methods inherited from interface org.eclipse.jdt.core.ISourceReference |
---|
exists, getSource, getSourceRange |
Methods inherited from interface org.eclipse.jdt.core.ISourceManipulation |
---|
copy, delete, move, rename |
Methods inherited from interface org.eclipse.jdt.core.IParent |
---|
getChildren, hasChildren |
Methods inherited from interface org.eclipse.jdt.core.IAnnotatable |
---|
getAnnotation, getAnnotations |
Method Detail |
---|
IMemberValuePair getDefaultValue() throws JavaModelException
member value pair
representing the default
value of this method if any, or null
if this method's parent is
not an annotation type, or else if this method does not have a default value.
Note that IMemberValuePair.getValue()
might return null
.
Please see this method for more details.
null
if none
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.java.lang.String getElementName()
"<init>"
).
For the class initialization methods in binary types, this returns
the special name "<clinit>"
.
This is a handle-only method.
getElementName
in interface IJavaElement
java.lang.String[] getExceptionTypes() throws JavaModelException
For example, a source method declaring "throws IOException"
,
would return the array {"QIOException;"}
.
The type signatures may be either unresolved (for source types)
or resolved (for binary types), and either basic (for basic types)
or rich (for parameterized types). See Signature
for details.
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.Signature
java.lang.String[] getTypeParameterSignatures() throws JavaModelException
getTypeParameters()
instead
The formal type parameter signatures may be either unresolved (for source
types) or resolved (for binary types). See Signature
for details.
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.Signature
ITypeParameter[] getTypeParameters() throws JavaModelException
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.int getNumberOfParameters()
java.lang.String getKey()
IBinding.getKey()
,
BindingKey
java.lang.String[] getParameterNames() throws JavaModelException
For example, a method declared as public void foo(String text, int length)
would return the array {"text","length"}
.
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.java.lang.String[] getParameterTypes()
For example, a source method declared as public void foo(String text, int length)
would return the array {"QString;","I"}
.
The type signatures may be either unresolved (for source types)
or resolved (for binary types), and either basic (for basic types)
or rich (for parameterized types). See Signature
for details.
Signature
java.lang.String[] getRawParameterNames() throws JavaModelException
For example, a method declared as public void foo(String text, int length)
would return the array {"text","length"}
. For the same method in a
binary, this would return {"arg0", "arg1"}
.
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.java.lang.String getReturnType() throws JavaModelException
For example, a source method declared as public String getName()
would return "QString;"
.
The type signature may be either unresolved (for source types)
or resolved (for binary types), and either basic (for basic types)
or rich (for parameterized types). See Signature
for details.
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.Signature
java.lang.String getSignature() throws JavaModelException
For example, a source method declared as public void foo(String text, int length)
would return "(QString;I)V"
.
The type signatures embedded in the method signature may be either unresolved
(for source types) or resolved (for binary types), and either basic (for
basic types) or rich (for parameterized types). See Signature
for
details.
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.Signature
ITypeParameter getTypeParameter(java.lang.String name)
name
- the given simple name
boolean isConstructor() throws JavaModelException
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.boolean isMainMethod() throws JavaModelException
"main"
void
static
and public
String[]
JavaModelException
- if this element does not exist or if an
exception occurs while accessing its corresponding resource.boolean isResolved()
boolean isSimilar(IMethod method)
method
- the given method
Signature.getSimpleName(char[])
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |