FileDocCategorySizeDatePackage
TypeParameterDeclaration.javaAPI DocJava SE 5 API1208Fri Aug 26 14:55:14 BST 2005com.sun.mirror.declaration

TypeParameterDeclaration

public interface TypeParameterDeclaration implements Declaration
Represents a formal type parameter of a generic type, method, or constructor declaration. A type parameter declares a {@link TypeVariable}.
author
Joseph D. Darcy
author
Scott Seligman
version
1.1 04/01/26
since
1.5

Fields Summary
Constructors Summary
Methods Summary
public java.util.CollectiongetBounds()
Returns the bounds of this type parameter. These are the types given by the extends clause. If there is no explicit extends clause, then java.lang.Object is considered to be the sole bound.

return
the bounds of this type parameter

public com.sun.mirror.declaration.DeclarationgetOwner()
Returns the type, method, or constructor declaration within which this type parameter is declared.

return
the declaration within which this type parameter is declared