001 package net.sourceforge.retroweaver.runtime.java.lang.reflect;
002
003 import net.sourceforge.retroweaver.runtime.java.lang.TypeNotPresentException;
004
005 public interface WildcardType extends Type {
006
007 Type[] getLowerBounds() throws TypeNotPresentException, MalformedParameterizedTypeException;
008
009 Type[] getUpperBounds() throws TypeNotPresentException, MalformedParameterizedTypeException;
010
011 }