OnJava8-Examples/annotations/ExtractInterface.java

11 lines
258 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: 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();
} ///:~