Java Doc for IMethod.java in  » IDE-Eclipse » jdt » org » eclipse » jdt » core » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » IDE Eclipse » jdt » org.eclipse.jdt.core 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.eclipse.jdt.core.IMethod

All known Subclasses:   org.eclipse.jdt.internal.core.SourceMethod,  org.eclipse.jdt.internal.core.BinaryMethod,
IMethod
public interface IMethod extends IMember(Code)
Represents a method (or constructor) declared in a type.

This interface is not intended to be implemented by clients.





Method Summary
 StringgetElementName()
     Returns the simple name of this method.
 String[]getExceptionTypes()
     Returns the type signatures of the exceptions this method throws, in the order declared in the source.
 StringgetKey()
     Returns the binding key for this method.
 intgetNumberOfParameters()
     Returns the number of parameters of this method.
 String[]getParameterNames()
     Returns the names of parameters in this method. For binary types, associated source or attached Javadoc are used to retrieve the names. If none can be retrieved, then these names are invented as "arg"+i, where i starts at 0. Returns an empty array if this method has no parameters.

For example, a method declared as public void foo(String text, int length) would return the array {"text","length"}.


exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource.
 String[]getParameterTypes()
     Returns the type signatures for the parameters of this method. Returns an empty array if this method has no parameters. This is a handle-only method.

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).

 String[]getRawParameterNames()
     Returns the names of parameters in this method. For binary types, these names are invented as "arg"+i, where i starts at 0 (even if source is associated with the binary or if Javdoc is attached to the binary). Returns an empty array if this method has no parameters.

For example, a method declared as public void foo(String text, int length) would return the array {"text","length"}.

 StringgetReturnType()
     Returns the type signature of the return value of this method. For constructors, this returns the signature for void.

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).

 StringgetSignature()
     Returns the signature of this method.
 ITypeParametergetTypeParameter(String name)
     Returns the type parameter declared in this method with the given name. This is a handle-only method.
 String[]getTypeParameterSignatures()
     Returns the formal type parameter signatures for this method. Returns an empty array if this method has no formal type parameters.

The formal type parameter signatures may be either unresolved (for source types) or resolved (for binary types).

 ITypeParameter[]getTypeParameters()
     Returns the formal type parameters for this method. Returns an empty array if this method has no formal type parameters.
exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource.
 booleanisConstructor()
     Returns whether this method is a constructor.
exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource.
 booleanisMainMethod()
     Returns whether this method is a main method.
 booleanisResolved()
     Returns whether this method represents a resolved method.
 booleanisSimilar(IMethod method)
     Returns whether this method is similar to the given method.



Method Detail
getElementName
String getElementName()(Code)
Returns the simple name of this method. For a constructor, this returns the simple name of the declaring type. Note: This holds whether the constructor appears in a source or binary type (even though class files internally define constructor names to be "<init>"). For the class initialization methods in binary types, this returns the special name "<clinit>". This is a handle-only method. the simple name of this method



getExceptionTypes
String[] getExceptionTypes() throws JavaModelException(Code)
Returns the type signatures of the exceptions this method throws, in the order declared in the source. Returns an empty array if this method throws no exceptions.

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.


exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource. the type signatures of the exceptions this method throws,in the order declared in the source, an empty array if this method throws no exceptions
See Also:   Signature



getKey
String getKey()(Code)
Returns the binding key for this method. A binding key is a key that uniquely identifies this method. It allows access to generic info for parameterized methods. the binding key for this method
See Also:   org.eclipse.jdt.core.dom.IBinding.getKey
See Also:   BindingKey
since:
   3.1



getNumberOfParameters
int getNumberOfParameters()(Code)
Returns the number of parameters of this method. This is a handle-only method. the number of parameters of this method



getParameterNames
String[] getParameterNames() throws JavaModelException(Code)
Returns the names of parameters in this method. For binary types, associated source or attached Javadoc are used to retrieve the names. If none can be retrieved, then these names are invented as "arg"+i, where i starts at 0. Returns an empty array if this method has no parameters.

For example, a method declared as public void foo(String text, int length) would return the array {"text","length"}.


exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource. the names of parameters in this method, an empty array if this method has no parameters



getParameterTypes
String[] getParameterTypes()(Code)
Returns the type signatures for the parameters of this method. Returns an empty array if this method has no parameters. This is a handle-only method.

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.

the type signatures for the parameters of this method, an empty array if this method has no parameters
See Also:   Signature



getRawParameterNames
String[] getRawParameterNames() throws JavaModelException(Code)
Returns the names of parameters in this method. For binary types, these names are invented as "arg"+i, where i starts at 0 (even if source is associated with the binary or if Javdoc is attached to the binary). Returns an empty array if this method has no parameters.

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"}.


exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource. the names of parameters in this method, an empty array if this method has no parameters
since:
   3.2



getReturnType
String getReturnType() throws JavaModelException(Code)
Returns the type signature of the return value of this method. For constructors, this returns the signature for void.

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.


exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource. the type signature of the return value of this method, void for constructors
See Also:   Signature



getSignature
String getSignature() throws JavaModelException(Code)
Returns the signature of this method. This includes the signatures for the parameter types and return type, but does not include the method name, exception types, or type parameters.

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.

the signature of this method
exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource.
See Also:   Signature



getTypeParameter
ITypeParameter getTypeParameter(String name)(Code)
Returns the type parameter declared in this method with the given name. This is a handle-only method. The type parameter may or may not exist.
Parameters:
  name - the given simple name the type parameter declared in this method with the given name
since:
   3.1



getTypeParameterSignatures
String[] getTypeParameterSignatures() throws JavaModelException(Code)
Returns the formal type parameter signatures for this method. Returns an empty array if this method has no formal type parameters.

The formal type parameter signatures may be either unresolved (for source types) or resolved (for binary types). See Signature for details.


exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource. the formal type parameter signatures of this method,in the order declared in the source, an empty array if none
See Also:   Signature
since:
   3.0IMethod.getTypeParameters()



getTypeParameters
ITypeParameter[] getTypeParameters() throws JavaModelException(Code)
Returns the formal type parameters for this method. Returns an empty array if this method has no formal type parameters.
exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource. the formal type parameters of this method,in the order declared in the source, an empty array if none
since:
   3.1



isConstructor
boolean isConstructor() throws JavaModelException(Code)
Returns whether this method is a constructor.
exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource. true if this method is a constructor, false otherwise



isMainMethod
boolean isMainMethod() throws JavaModelException(Code)
Returns whether this method is a main method. It is a main method if:
  • its name is equal to "main"
  • its return type is void
  • it is static and public
  • it defines one parameter whose type's simple name is String[]

exception:
  JavaModelException - if this element does not exist or if anexception occurs while accessing its corresponding resource.
since:
   2.0 true if this method is a main method, false otherwise



isResolved
boolean isResolved()(Code)
Returns whether this method represents a resolved method. If a method is resoved, its key contains resolved information. whether this method represents a resolved method.
since:
   3.1



isSimilar
boolean isSimilar(IMethod method)(Code)
Returns whether this method is similar to the given method. Two methods are similar if:
  • their element names are equal
  • they have the same number of parameters
  • the simple names of their parameter types are equal
This is a handle-only method.
Parameters:
  method - the given method true if this method is similar to the given method.
See Also:   Signature.getSimpleName(char[])
since:
   2.0



www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.