Home | History | Annotate | Download | only in sql
      1 package java.sql;
      2 
      3 import java.lang.annotation.Documented;
      4 import java.lang.annotation.Retention;
      5 import java.lang.annotation.RetentionPolicy;
      6 
      7 import javax.annotation.meta.TypeQualifier;
      8 
      9 @Documented
     10 @TypeQualifier(applicableTo=Integer.class)
     11 @Retention(RetentionPolicy.RUNTIME)
     12 public @interface ResultSetType {
     13 
     14 }
     15