Checks whether this method is declared as static. @return true if this method has the static modifier
()
| 304 | * @return true if this method has the static modifier |
| 305 | */ |
| 306 | public boolean isStatic() { |
| 307 | return (modifiers & ACC_STATIC) != 0; |
| 308 | } |
| 309 | |
| 310 | /** |
| 311 | * Checks whether this method is declared as public. |
no outgoing calls
no test coverage detected