AuthorTree.java revision 3193:3b3bea483542
1336815Sdim/*
2336815Sdim * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3353358Sdim * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4353358Sdim *
5353358Sdim * This code is free software; you can redistribute it and/or modify it
6336815Sdim * under the terms of the GNU General Public License version 2 only, as
7336815Sdim * published by the Free Software Foundation.  Oracle designates this
8336815Sdim * particular file as subject to the "Classpath" exception as provided
9336815Sdim * by Oracle in the LICENSE file that accompanied this code.
10336815Sdim *
11336815Sdim * This code is distributed in the hope that it will be useful, but WITHOUT
12336815Sdim * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13336815Sdim * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14336815Sdim * version 2 for more details (a copy is included in the LICENSE file that
15336815Sdim * accompanied this code).
16336815Sdim *
17353358Sdim * You should have received a copy of the GNU General Public License version
18336815Sdim * 2 along with this work; if not, write to the Free Software Foundation,
19344779Sdim * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20336815Sdim *
21353358Sdim * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22353358Sdim * or visit www.oracle.com if you need additional information or have any
23353358Sdim * questions.
24353358Sdim */
25353358Sdim
26336815Sdimpackage com.sun.source.doctree;
27336815Sdim
28336815Sdimimport java.util.List;
29336815Sdim
30353358Sdim/**
31336815Sdim * A tree node for an @author block tag.
32336815Sdim *
33353358Sdim * <p>
34353358Sdim * &#064;author name-text.
35336815Sdim *
36336815Sdim * @since 1.8
37336815Sdim */
38336815Sdimpublic interface AuthorTree extends BlockTagTree {
39336815Sdim    /**
40336815Sdim     * Returns the name of the author.
41344779Sdim     * @return the name
42344779Sdim     */
43344779Sdim    List<? extends DocTree> getName();
44336815Sdim}
45344779Sdim