www.pudn.com > ThinkinginJava4thEdition(SourceCode).zip > DBTable.java


//: annotations/database/DBTable.java 
package annotations.database; 
import java.lang.annotation.*; 
 
@Target(ElementType.TYPE) // Applies to classes only 
@Retention(RetentionPolicy.RUNTIME) 
public @interface DBTable { 
  public String name() default ""; 
} ///:~