janino.net

org.codehaus.janino
Class Java.TypeParameter

java.lang.Object
  extended by org.codehaus.janino.Java.TypeParameter
Enclosing class:
Java

public static class Java.TypeParameter
extends java.lang.Object

Representation of a type parameter (which declares a type variable).


Field Summary
 java.lang.String name
          The name of the type variable.
 Java.ReferenceType[] optionalBound
          The optional bound of the type parameter.
 
Constructor Summary
Java.TypeParameter(java.lang.String name, Java.ReferenceType[] optionalBound)
           
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

name

public final java.lang.String name
The name of the type variable.


optionalBound

public final Java.ReferenceType[] optionalBound
The optional bound of the type parameter.

Constructor Detail

Java.TypeParameter

public Java.TypeParameter(java.lang.String name,
                          Java.ReferenceType[] optionalBound)
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

janino.net