Bruce Eckel 49edcc8b17 reorg
2015-06-15 17:47:35 -07:00

11 lines
277 B
Java

//: annotations/UseCase.java
// ©2015 MindView LLC: see Copyright.txt
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface UseCase {
public int id();
public String description() default "no description";
} ///:~