Returns the method body as a Statement. Typically a BlockStatement containing the method's instructions. Returns null for abstract methods or interface methods with no implementation. @return the method body statement, or null for abstract methods
()
| 115 | * @return the method body statement, or null for abstract methods |
| 116 | */ |
| 117 | public Statement getCode() { |
| 118 | return code; |
| 119 | } |
| 120 | |
| 121 | /** |
| 122 | * Sets the method body statement. |
no outgoing calls