⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 typeparameterdeclaration.java

📁 java1.6众多例子参考
💻 JAVA
字号:
/* * @(#)TypeParameterDeclaration.java	1.2 05/11/17 * * Copyright 2006 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.2 05/11/17 * @since 1.5 */public interface TypeParameterDeclaration extends Declaration {    /**     * Returns the bounds of this type parameter.     * These are the types given by the <i>extends</i> clause.     * If there is no explicit <i>extends</i> clause, then     * <tt>java.lang.Object</tt> is considered to be the sole bound.     *     * @return the bounds of this type parameter     */    Collection<ReferenceType> 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();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -