ValueTree.java revision 2571:10fc81ac75b4
1285SN/A/*
2396SN/A * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3285SN/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4285SN/A *
5285SN/A * This code is free software; you can redistribute it and/or modify it
6285SN/A * under the terms of the GNU General Public License version 2 only, as
7285SN/A * published by the Free Software Foundation.  Oracle designates this
8285SN/A * particular file as subject to the "Classpath" exception as provided
9285SN/A * by Oracle in the LICENSE file that accompanied this code.
10285SN/A *
11285SN/A * This code is distributed in the hope that it will be useful, but WITHOUT
12285SN/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13285SN/A * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14285SN/A * version 2 for more details (a copy is included in the LICENSE file that
15285SN/A * accompanied this code).
16285SN/A *
17285SN/A * You should have received a copy of the GNU General Public License version
18285SN/A * 2 along with this work; if not, write to the Free Software Foundation,
19285SN/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20285SN/A *
21285SN/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22285SN/A * or visit www.oracle.com if you need additional information or have any
23285SN/A * questions.
24285SN/A */
25285SN/A
26285SN/Apackage com.sun.source.doctree;
27285SN/A
28285SN/A/**
29285SN/A * A tree node for an @value inline tag.
30285SN/A *
31285SN/A * <p>
32285SN/A * { &#064;value reference }
33285SN/A *
34285SN/A * @since 1.8
35285SN/A */
36285SN/A@jdk.Exported
37285SN/Apublic interface ValueTree extends InlineTagTree {
38285SN/A    /**
39285SN/A     * Returns the reference to the value.
40285SN/A     * @return the reference
41285SN/A     */
42285SN/A    ReferenceTree getReference();
43285SN/A}
44285SN/A