OnJava8-Examples/annotations/ifx/ExtractInterface.java

12 lines
332 B
Java
Raw Normal View History

2015-05-20 00:19:37 -07:00
//: annotations/ifx/ExtractInterface.java
2015-05-29 14:18:51 -07:00
// <20>2015 MindView LLC: see Copyright.txt
2015-05-20 00:19:37 -07:00
// javac-based annotation processing.
package annotations.ifx;
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface ExtractInterface {
public String interfaceName() default "-!!-";
} ///:~