|
||||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||
java.lang.Objectorg.objectweb.speedo.metadata.CodeMethod
Stores info on methods of a SpeedoClass
| Field Summary | |
|---|---|
java.lang.String[] |
exceptions
The list of the exception thrown by the method |
boolean |
isConstructor
Indicates whether this method is a constructor |
java.lang.String |
methodDesc
Descriptor of the method (encoded form of its signature and return type) |
java.lang.String |
modifiers
is the modifiers of the method 'public final' |
java.lang.String |
name
Name of the method.If the method is a constructor the name of the method is null. |
java.lang.String |
params
The declaraction of the method parameters. |
java.lang.String |
superClass
Call to the super constructor |
| Constructor Summary | |
|---|---|
CodeMethod(java.lang.String name,
java.lang.String params,
java.lang.String superclass,
boolean isConstr,
int modifiers,
java.lang.String[] exceptions)
|
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
public java.lang.String name
public java.lang.String modifiers
public java.lang.String params
public java.lang.String[] exceptions
public boolean isConstructor
public java.lang.String superClass
public java.lang.String methodDesc
| Constructor Detail |
public CodeMethod(java.lang.String name,
java.lang.String params,
java.lang.String superclass,
boolean isConstr,
int modifiers,
java.lang.String[] exceptions)
name - is the ASM name of theparams - is the declaraction of method parameters separated by
commassuperclass - is a string representing the call to the super method.isConstr - indicates if the method is a constructor.modifiers - is the ASM code representing the method modifiersexceptions - is the list of exceptions thrown by the method
|
||||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||||