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 Object

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


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

Field Detail

name

public final 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(String name,
                          Java.ReferenceType[] optionalBound)
Method Detail

toString

public String toString()
Overrides:
toString in class Object

janino.net