001package net.gdface.annotation; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008@Target(ElementType.TYPE) 009@Retention(RetentionPolicy.RUNTIME) 010public @interface DefaultGenericTypes { 011 String[] names() default {"T"}; 012 Class<?>[] types() default { byte[].class }; 013}