www.pudn.com > ThinkinginJava4thEdition(SourceCode).zip > ExtractInterface.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(); 
} ///:~