SeeTree.java revision 3193:3b3bea483542
1130803Smarcel/*
2130803Smarcel * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3130803Smarcel * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4130803Smarcel *
5130803Smarcel * This code is free software; you can redistribute it and/or modify it
6130803Smarcel * under the terms of the GNU General Public License version 2 only, as
7130803Smarcel * published by the Free Software Foundation.  Oracle designates this
8130803Smarcel * particular file as subject to the "Classpath" exception as provided
9130803Smarcel * by Oracle in the LICENSE file that accompanied this code.
10130803Smarcel *
11130803Smarcel * This code is distributed in the hope that it will be useful, but WITHOUT
12130803Smarcel * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13130803Smarcel * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14130803Smarcel * version 2 for more details (a copy is included in the LICENSE file that
15130803Smarcel * accompanied this code).
16130803Smarcel *
17130803Smarcel * You should have received a copy of the GNU General Public License version
18130803Smarcel * 2 along with this work; if not, write to the Free Software Foundation,
19130803Smarcel * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20130803Smarcel *
21130803Smarcel * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22130803Smarcel * or visit www.oracle.com if you need additional information or have any
23130803Smarcel * questions.
24130803Smarcel */
25130803Smarcel
26130803Smarcelpackage com.sun.source.doctree;
27130803Smarcel
28130803Smarcelimport java.util.List;
29130803Smarcel
30130803Smarcel/**
31130803Smarcel *
32130803Smarcel * A tree node for an @see block tag.
33130803Smarcel *
34130803Smarcel * <p>
35130803Smarcel * &#064;see "string" <br>
36130803Smarcel * &#064;see &lt;a href="URL#value"&gt; label &lt;/a&gt; <br>
37130803Smarcel * &#064;see reference
38130803Smarcel *
39130803Smarcel * @since 1.8
40130803Smarcel */
41130803Smarcelpublic interface SeeTree extends BlockTagTree {
42130803Smarcel    /**
43130803Smarcel     * Returns the reference.
44130803Smarcel     * @return the reference
45130803Smarcel     */
46130803Smarcel    List<? extends DocTree> getReference();
47130803Smarcel}
48130803Smarcel