< prev index next >

src/java.compiler/share/classes/javax/lang/model/type/WildcardType.java

Print this page

        

*** 26,40 **** package javax.lang.model.type; /** * Represents a wildcard type argument. ! * Examples include: <pre><tt> * ? * ? extends Number * ? super T ! * </tt></pre> * * <p> A wildcard may have its upper bound explicitly set by an * {@code extends} clause, its lower bound explicitly set by a * {@code super} clause, or neither (but not both). * --- 26,40 ---- package javax.lang.model.type; /** * Represents a wildcard type argument. ! * Examples include: <pre><code> * ? * ? extends Number * ? super T ! * </code></pre> * * <p> A wildcard may have its upper bound explicitly set by an * {@code extends} clause, its lower bound explicitly set by a * {@code super} clause, or neither (but not both). *
< prev index next >