src/share/classes/com/sun/source/doctree/ParamTree.java

Tue, 19 Feb 2013 00:31:45 -0800

author
darcy
date
Tue, 19 Feb 2013 00:31:45 -0800
changeset 1590
011cf7e0a148
parent 1409
33abf479f202
child 2083
379c04c090cf
permissions
-rw-r--r--

8008267: Add @Supported annotation to com.sun.source types
Reviewed-by: jjg

jjg@1409 1 /*
darcy@1590 2 * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
jjg@1409 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1409 4 *
jjg@1409 5 * This code is free software; you can redistribute it and/or modify it
jjg@1409 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1409 7 * published by the Free Software Foundation. Oracle designates this
jjg@1409 8 * particular file as subject to the "Classpath" exception as provided
jjg@1409 9 * by Oracle in the LICENSE file that accompanied this code.
jjg@1409 10 *
jjg@1409 11 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1409 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1409 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1409 14 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1409 15 * accompanied this code).
jjg@1409 16 *
jjg@1409 17 * You should have received a copy of the GNU General Public License version
jjg@1409 18 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1409 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1409 20 *
jjg@1409 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1409 22 * or visit www.oracle.com if you need additional information or have any
jjg@1409 23 * questions.
jjg@1409 24 */
jjg@1409 25
jjg@1409 26 package com.sun.source.doctree;
jjg@1409 27
jjg@1409 28 import java.util.List;
jjg@1409 29
jjg@1409 30 /**
jjg@1409 31 * A tree node for an @param block tag.
jjg@1409 32 *
jjg@1409 33 * <p>
jjg@1409 34 * &#064;param parameter-name description
jjg@1409 35 *
jjg@1409 36 * @since 1.8
jjg@1409 37 */
darcy@1590 38 @jdk.Supported
jjg@1409 39 public interface ParamTree extends BlockTagTree {
jjg@1409 40 boolean isTypeParameter();
jjg@1409 41 IdentifierTree getName();
jjg@1409 42 List<? extends DocTree> getDescription();
jjg@1409 43 }

mercurial