|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Represents a method declaration.
Method Summary | |
void |
addException(String exceptionType)
Adds the given exception to the end of the list of exceptions this method is declared to throw. |
String |
getBody()
Returns the body of this method. |
String[] |
getExceptions()
Returns the type signatures of the exceptions this method throws, in the order declared in the source. |
String[] |
getParameterNames()
Returns the names of parameters in this method in the order they are declared, or null if no parameters are declared.
|
String[] |
getParameterTypes()
Returns the type names for the parameters of this method in the order they are declared, or null if no parameters are declared.
|
String |
getReturnType()
Returns the return type name, or null .
|
String[] |
getTypeParameters()
Returns the formal type parameters for this method. |
boolean |
isConstructor()
Returns whether this method is a constructor. |
void |
setBody(String body)
Sets the body of this method. |
void |
setExceptions(String[] exceptionTypes)
Sets the names of the exception types this method throws, in the order in which they are declared in the source. |
void |
setParameters(String[] types,
String[] names)
Sets the types and names of parameters in this method in the order they are to be declared. |
void |
setReturnType(String type)
Sets the return type name. |
Methods inherited from interface org.eclipse.emf.codegen.merge.java.facade.JMember |
getComment, setComment |
Methods inherited from interface org.eclipse.emf.codegen.merge.java.facade.JNode |
getChildren, getContents, getFlags, getName, getParent, getQualifiedName, setFlags |
Method Detail |
public boolean isConstructor()
true
for constructors, and false
for methodspublic String getReturnType()
null
.
Returns null
for constructors.
The syntax for return type name corresponds to ReturnType in
MethodDeclaration (JLS2 8.4). Names are returned as they appear in the source
code; for example: "File"
, "java.io.File"
,
"int[]"
, or "void"
.
public void setReturnType(String type)
"File"
, "java.io.File"
,
"int[]"
, or "void"
.
type
- the return typepublic String[] getTypeParameters()
Formal type parameters are as they appear in the source
code; for example:
"X extends List<String> & Serializable"
.
public String[] getParameterNames()
null
if no parameters are declared.
The syntax for parameter names is defined by Formal Parameters (JLS2 8.4.1).
public String[] getParameterTypes()
null
if no parameters are declared.
The syntax for type names is defined by Formal Parameters (JLS2 8.4.1).
Type names must be specified as they would appear in source code. For
example: "File"
, "java.io.File"
, or
"int[]"
.
public void setParameters(String[] types, String[] names) throws IllegalArgumentException
types
and names
are null
this indicates that this method has no parameters.
The syntax for parameter names is defined by Formal Parameters (JLS2 8.4.1).
The syntax for type names is defined by Formal Parameters (JLS2 8.4.1).
Type names must be specified as they would appear in source code. For
example: "File"
, "java.io.File"
, or
"int[]"
.
types
- the list of type namesnames
- the list of parameter name
IllegalArgumentException
public String[] getExceptions()
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).
public void setExceptions(String[] exceptionTypes)
"IOException"
or "java.io.IOException"
.
exceptionTypes
- the list of exception typespublic void addException(String exceptionType)
"IOException"
or "java.io.IOException"
.
This is a convenience method for setExceptions
.
exceptionType
- the exception typesetExceptions(String[])
public String getBody()
null
if the method has no body (for
example, for an abstract or native method)public void setBody(String body)
body
- the body, or null
indicating the method has no body (for
example, for an abstract or native method)
|
Copyright 2001-2006 IBM Corporation and others. All Rights Reserved. |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |