12 lines
No EOL
330 B
Java
12 lines
No EOL
330 B
Java
package be.jeffcheasey88.peeratcode.bonus.extract;
|
|
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.METHOD)
|
|
public @interface RouteDocs {
|
|
RouteDoc[] value();
|
|
} |