/* * @(#)TypeParameterDeclaration.java 1.1 04/01/26 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.mirror.declaration; import java.util.Collection; import com.sun.mirror.type.*; /** * 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 */ public interface TypeParameterDeclaration extends Declaration { /** * 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 */ Collection getBounds(); /** * Returns the type, method, or constructor declaration within which * this type parameter is declared. * * @return the declaration within which this type parameter is declared */ Declaration getOwner(); }