Get the end offset of an annotation.
(SimpleAnnotation a)
| 296 | * Get the end offset of an annotation. |
| 297 | */ |
| 298 | public static Long end(SimpleAnnotation a) { |
| 299 | return (a.getEndNode() == null) ? null : a.getEndNode().getOffset(); |
| 300 | } |
| 301 | |
| 302 | /** |
| 303 | * Get the end offset of an annotation set. |
no test coverage detected