Annotation Type DoubleDactyl


  • @Retention(SOURCE)
    @Visionary("Paul Cowan")
    public @interface DoubleDactyl
    Indicates that the annotated code is a double dactyl. For example:
       @DoubleDactyl
       public void createNewTractor() {
    
         tractoryFactory
             .tractorConfigurer()
             .setTractorPaintjob(
                 A_BRIGHT_SHINY_RED);
    
         saveTheNewTractor(
             AUTOTRANSACTIONALLY);
         driveTheNewTractorIn(
             new WorkerThread());
    
       }