12 lines
325 B
Java
12 lines
325 B
Java
// annotations/ifx/ExtractInterface.java
|
|
// ©2016 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 "-!!-";
|
|
}
|