langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/Taglet.java
changeset 45448 4b53bf8b530c
parent 44810 448516ac7b09
equal deleted inserted replaced
45447:10df9eec1d04 45448:4b53bf8b530c
     1 /*
     1 /*
     2  * Copyright (c) 2001, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2001, 2017, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    30 /**
    30 /**
    31  * The interface for a custom tag used by Doclets. A custom
    31  * The interface for a custom tag used by Doclets. A custom
    32  * tag must implement this interface.
    32  * tag must implement this interface.
    33  *
    33  *
    34  * <p style="font-style: italic; font-size:larger">
    34  * <p style="font-style: italic; font-size:larger">
    35  * <b>Note:</b> This interface has been superseded by one
    35  * <b>Note:</b> This interface has been superseded by its replacement,
    36  * in the new package {@code jdk.javadoc.doclet.taglet}.
    36  * {@link jdk.javadoc.doclet.Taglet}.
    37  * </p>
    37  * </p>
    38  *
    38  *
    39  * To be loaded and used by
    39  * To be loaded and used by
    40  * doclets at run-time, the taglet must have a static method called
    40  * doclets at run-time, the taglet must have a static method called
    41  * <code>register</code> that accepts a {@link java.util.Map} as an
    41  * <code>register</code> that accepts a {@link java.util.Map} as an
    64  *
    64  *
    65  * @since 1.4
    65  * @since 1.4
    66  * @author Jamie Ho
    66  * @author Jamie Ho
    67  *
    67  *
    68  * @deprecated
    68  * @deprecated
    69  *   This interface has been superseded by one in the new package {@code jdk.javadoc.doclet.taglet}.
    69  * This interface has been superseded by its replacement,
       
    70  * {@link jdk.javadoc.doclet.Taglet}.
    70  */
    71  */
    71 @Deprecated
    72 @Deprecated
    72 public interface Taglet {
    73 public interface Taglet {
    73 
    74 
    74     /**
    75     /**