Returns whether this method is abstract. @return true if this method is abstract
()
| 185 | * @return true if this method is abstract |
| 186 | */ |
| 187 | public boolean isAbstract() { |
| 188 | return (getModifiers() & Modifier.ABSTRACT) != 0; |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Returns whether this method is interface-default. |
no test coverage detected