BaseInlineTaglet.java revision 3233:b5d08bc0d224
192555Sdes/*
292555Sdes * Copyright (c) 2001, 2016, Oracle and/or its affiliates. All rights reserved.
376259Sgreen * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
476259Sgreen *
576259Sgreen * This code is free software; you can redistribute it and/or modify it
676259Sgreen * under the terms of the GNU General Public License version 2 only, as
776259Sgreen * published by the Free Software Foundation.  Oracle designates this
876259Sgreen * particular file as subject to the "Classpath" exception as provided
976259Sgreen * by Oracle in the LICENSE file that accompanied this code.
1076259Sgreen *
1176259Sgreen * This code is distributed in the hope that it will be useful, but WITHOUT
1276259Sgreen * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1376259Sgreen * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1476259Sgreen * version 2 for more details (a copy is included in the LICENSE file that
1576259Sgreen * accompanied this code).
1676259Sgreen *
1776259Sgreen * You should have received a copy of the GNU General Public License version
1876259Sgreen * 2 along with this work; if not, write to the Free Software Foundation,
1976259Sgreen * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2092555Sdes *
2192555Sdes * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2292555Sdes * or visit www.oracle.com if you need additional information or have any
2392555Sdes * questions.
2492555Sdes */
2576259Sgreen
2676259Sgreenpackage jdk.javadoc.internal.doclets.toolkit.taglets;
27
28/**
29 * An abstract inline taglet that outputs HTML.
30 *
31 *  <p><b>This is NOT part of any supported API.
32 *  If you write code that depends on this, you do so at your own risk.
33 *  This code and its internal interfaces are subject to change or
34 *  deletion without notice.</b>
35 *
36 * @author Jamie Ho
37 */
38
39public abstract class BaseInlineTaglet extends BaseTaglet {
40
41    /**
42     * Will return true since this is an inline tag.
43     * @return true since this is an inline tag.
44     */
45    public boolean isInlineTag() {
46        return true;
47    }
48}
49