1 package net.sourceforge.basher.annotations; 2 3 import java.lang.annotation.Retention; 4 import java.lang.annotation.RetentionPolicy; 5 import java.lang.annotation.Target; 6 import java.lang.annotation.ElementType; 7 8 /** Defines the name of the task. 9 * @author Johan Lindquist 10 * @version $Revision$ 11 */ 12 @Retention(RetentionPolicy.RUNTIME) 13 @Target(ElementType.TYPE) 14 public @interface BasherName 15 { 16 /** Defines the name of the task. 17 * 18 * @return The name 19 */ 20 String name(); 21 }