10 lines
236 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: annotations/UseCase.java
import java.lang.annotation.*;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface UseCase {
public int id();
public String description() default "no description";
} ///:~