OnJava8-Examples/annotations/ifx/ExtractInterface.java

12 lines
325 B
Java
Raw Normal View History

2015-09-07 11:44:36 -06:00
// annotations/ifx/ExtractInterface.java
2015-06-15 17:47:35 -07:00
// <20>2015 MindView LLC: see Copyright.txt
// javac-based annotation processing.
package annotations.ifx;
import java.lang.annotation.*;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.SOURCE)
public @interface ExtractInterface {
public String interfaceName() default "-!!-";
2015-09-07 11:44:36 -06:00
}