jjg@1409: /* darcy@1590: * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved. jjg@1409: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jjg@1409: * jjg@1409: * This code is free software; you can redistribute it and/or modify it jjg@1409: * under the terms of the GNU General Public License version 2 only, as jjg@1409: * published by the Free Software Foundation. Oracle designates this jjg@1409: * particular file as subject to the "Classpath" exception as provided jjg@1409: * by Oracle in the LICENSE file that accompanied this code. jjg@1409: * jjg@1409: * This code is distributed in the hope that it will be useful, but WITHOUT jjg@1409: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jjg@1409: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jjg@1409: * version 2 for more details (a copy is included in the LICENSE file that jjg@1409: * accompanied this code). jjg@1409: * jjg@1409: * You should have received a copy of the GNU General Public License version jjg@1409: * 2 along with this work; if not, write to the Free Software Foundation, jjg@1409: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jjg@1409: * jjg@1409: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jjg@1409: * or visit www.oracle.com if you need additional information or have any jjg@1409: * questions. jjg@1409: */ jjg@1409: jjg@1409: package com.sun.source.doctree; jjg@1409: jjg@1409: import java.util.List; jjg@1409: jjg@1409: /** jjg@1409: * A tree node for an @param block tag. jjg@1409: * jjg@1409: *

jjg@1409: * @param parameter-name description jjg@1409: * jjg@1409: * @since 1.8 jjg@1409: */ darcy@1590: @jdk.Supported jjg@1409: public interface ParamTree extends BlockTagTree { jjg@1409: boolean isTypeParameter(); jjg@1409: IdentifierTree getName(); jjg@1409: List getDescription(); jjg@1409: }