1 package net.sourceforge.basher.annotations; 2 3 import java.lang.annotation.ElementType; 4 import java.lang.annotation.Retention; 5 import java.lang.annotation.RetentionPolicy; 6 import java.lang.annotation.Target; 7 8 import net.sourceforge.basher.Phase; 9 10 /** Indicates that the method should be used for retrieving the tasks that will 'follow' this task. 11 * @author Johan Lindquist 12 */ 13 @Retention( RetentionPolicy.RUNTIME) 14 @Target( ElementType.METHOD) 15 public @interface BasherFollowers 16 { 17 }