001 package net.sourceforge.retroweaver.runtime.java.lang.reflect; 002 003 public interface GenericDeclaration { 004 005 public TypeVariable<?>[] getTypeParameters() throws GenericSignatureFormatError; 006 007 }