SerialDataTree.java revision 3193:3b3bea483542
118334Speter/*
290075Sobrien * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3169689Skan * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
418334Speter *
590075Sobrien * This code is free software; you can redistribute it and/or modify it
618334Speter * under the terms of the GNU General Public License version 2 only, as
790075Sobrien * published by the Free Software Foundation.  Oracle designates this
890075Sobrien * particular file as subject to the "Classpath" exception as provided
990075Sobrien * by Oracle in the LICENSE file that accompanied this code.
1090075Sobrien *
1118334Speter * 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
1490075Sobrien * version 2 for more details (a copy is included in the LICENSE file that
1590075Sobrien * accompanied this code).
1618334Speter *
1718334Speter * 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,
19169689Skan * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20169689Skan *
2118334Speter * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2218334Speter * or visit www.oracle.com if you need additional information or have any
2350397Sobrien * questions.
24132718Skan */
25132718Skan
2618334Speterpackage com.sun.source.doctree;
27169689Skan
2818334Speterimport java.util.List;
2918334Speter
3018334Speter/**
3118334Speter * A tree node for an @serialData block tag.
3218334Speter *
3318334Speter * <p>
3490075Sobrien * &#064;serialData data-description
3518334Speter *
3650397Sobrien * @since 1.8
3790075Sobrien */
38169689Skanpublic interface SerialDataTree extends BlockTagTree {
3918334Speter    /**
4018334Speter     * Returns the description of the serial data.
4118334Speter     * @return the description
4218334Speter     */
4318334Speter    List<? extends DocTree> getDescription();
4418334Speter}
4518334Speter