VersionTree.java revision 2571:10fc81ac75b4
190075Sobrien/*
2169689Skan * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3132718Skan * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
490075Sobrien *
5132718Skan * This code is free software; you can redistribute it and/or modify it
690075Sobrien * under the terms of the GNU General Public License version 2 only, as
7132718Skan * published by the Free Software Foundation.  Oracle designates this
890075Sobrien * particular file as subject to the "Classpath" exception as provided
9132718Skan * by Oracle in the LICENSE file that accompanied this code.
1090075Sobrien *
1190075Sobrien * This code is distributed in the hope that it will be useful, but WITHOUT
1290075Sobrien * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1390075Sobrien * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14132718Skan * version 2 for more details (a copy is included in the LICENSE file that
1590075Sobrien * accompanied this code).
1690075Sobrien *
1790075Sobrien * You should have received a copy of the GNU General Public License version
1890075Sobrien * 2 along with this work; if not, write to the Free Software Foundation,
1990075Sobrien * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20132718Skan *
21169689Skan * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22169689Skan * or visit www.oracle.com if you need additional information or have any
2390075Sobrien * questions.
2490075Sobrien */
2590075Sobrien
26132718Skanpackage com.sun.source.doctree;
27132718Skan
2890075Sobrienimport java.util.List;
2990075Sobrien
3090075Sobrien/**
3190075Sobrien *
3290075Sobrien * A tree node for an @version block tag.
3390075Sobrien *
3490075Sobrien * <p>
3590075Sobrien * &#064;version version-text
3690075Sobrien *
3790075Sobrien * @since 1.8
3890075Sobrien */
3990075Sobrien@jdk.Exported
4090075Sobrienpublic interface VersionTree extends BlockTagTree {
4190075Sobrien    /**
4290075Sobrien     * Returns the body of the tag.
4390075Sobrien     * @return the body
4490075Sobrien     */
4590075Sobrien    List<? extends DocTree> getBody();
4690075Sobrien}
4790075Sobrien