UnknownInlineTagTree.java revision 2571:10fc81ac75b4
1221828Sgrehan/*
2221828Sgrehan * Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3221828Sgrehan * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4221828Sgrehan *
5221828Sgrehan * This code is free software; you can redistribute it and/or modify it
6221828Sgrehan * under the terms of the GNU General Public License version 2 only, as
7221828Sgrehan * published by the Free Software Foundation.  Oracle designates this
8221828Sgrehan * particular file as subject to the "Classpath" exception as provided
9221828Sgrehan * by Oracle in the LICENSE file that accompanied this code.
10221828Sgrehan *
11221828Sgrehan * This code is distributed in the hope that it will be useful, but WITHOUT
12221828Sgrehan * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13221828Sgrehan * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14221828Sgrehan * version 2 for more details (a copy is included in the LICENSE file that
15221828Sgrehan * accompanied this code).
16221828Sgrehan *
17221828Sgrehan * You should have received a copy of the GNU General Public License version
18221828Sgrehan * 2 along with this work; if not, write to the Free Software Foundation,
19221828Sgrehan * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20221828Sgrehan *
21221828Sgrehan * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22221828Sgrehan * or visit www.oracle.com if you need additional information or have any
23221828Sgrehan * questions.
24221828Sgrehan */
25221828Sgrehanpackage com.sun.source.doctree;
26245678Sneel
27221828Sgrehanimport java.util.List;
28221828Sgrehan
29221828Sgrehan/**
30221828Sgrehan * A tree node for an unrecognized inline tag.
31221828Sgrehan *
32269042Sneel * <p>
33269042Sneel * {&#064;name content}
34265062Sneel *
35265062Sneel * @since 1.8
36265062Sneel *
37265062Sneel */
38265203Sneel@jdk.Exported
39268889Sneelpublic interface UnknownInlineTagTree extends InlineTagTree {
40265062Sneel    /**
41265062Sneel     * Returns the content of an unrecognized inline tag.
42265062Sneel     * @return the content
43267338Stychon     */
44267338Stychon    List<? extends DocTree> getContent();
45267338Stychon}
46267338Stychon