10 lines
229 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// annotations/UseCase.java
2015-06-15 17:47:35 -07:00
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface UseCase {
public int id();
public String description() default "no description";
2015-09-07 11:44:36 -06:00
}