2015-09-07 11:44:36 -06:00

11 lines
270 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";
}