10 lines
236 B
Java
10 lines
236 B
Java
//: 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";
|
|
} ///:~
|