Annotation Type Haiku


  • @Retention(SOURCE)
    public @interface Haiku
    Indicates that the annotated code is a haiku. For example:
       @Haiku
       public void checkNodes() {
         if (tree.hasAnyLeafNodes()) {
           freshenLeavesOn(tree);
         }
       }