11 lines
258 B
Java
11 lines
258 B
Java
//: annotations/ExtractInterface.java
|
|
// APT-based annotation processing.
|
|
package annotations;
|
|
import java.lang.annotation.*;
|
|
|
|
@Target(ElementType.TYPE)
|
|
@Retention(RetentionPolicy.SOURCE)
|
|
public @interface ExtractInterface {
|
|
public String value();
|
|
} ///:~
|