| |
|
| java.lang.Object sli.kim.classfile.CommonInfo sli.kim.classfile.MethodInfo
addException | public void addException(String exceptionName)(Code) | | Add a checked exception that the method throws.
|
getCodeInfo | public CodeInfo getCodeInfo()(Code) | | Get the information about this method's code. If the method
has no code, this will return null.
|
getExceptions | public String[] getExceptions()(Code) | | Get all checked exceptions that the method throws.
|
isDeprecated | public boolean isDeprecated()(Code) | | Get whether this method is deprecated. Methods are not
deprecated until setDeprecated(true) is called.
|
setCodeInfo | public void setCodeInfo(CodeInfo codeInfo)(Code) | | Set information about this method's code. The CodeInfo need
not be entirely filled in before this method is called.
|
setDeprecated | public void setDeprecated(boolean d)(Code) | | Set whether this method is deprecated. Methods are not
deprecated until setDeprecated(true) is called.
|
setSignature | public void setSignature(String signature)(Code) | | Set the signature of the method. For example "([I,S)Ljava/lang/String;"
See Also: Signature |
|
|
|