Get the start offset of an annotation.
(SimpleAnnotation a)
| 275 | * Get the start offset of an annotation. |
| 276 | */ |
| 277 | public static Long start(SimpleAnnotation a) { |
| 278 | return (a.getStartNode() == null) ? null : a.getStartNode().getOffset(); |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * Get the start offset of an annotation set. |