Returns true if this parameter represents a receiver parameter (named "this") as specified by JSR 308. Receiver parameters allow annotations on instance method receivers. @return true if this is a receiver parameter @since 5.0.0
()
| 264 | * @since 5.0.0 |
| 265 | */ |
| 266 | public boolean isReceiver() { |
| 267 | return "this".equals(getName()); // JSR 308 |
| 268 | } |
| 269 | } |
no test coverage detected