src/jdk.javadoc/share/classes/com/sun/tools/doclets/standard/Standard.java
changeset 48840 5e2d2067da48
parent 47216 71c04702a3d5
equal deleted inserted replaced
48839:042834d56fbf 48840:5e2d2067da48
     1 /*
     1 /*
     2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2017, 2018, 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
    23  * questions.
    23  * questions.
    24  */
    24  */
    25 
    25 
    26 package com.sun.tools.doclets.standard;
    26 package com.sun.tools.doclets.standard;
    27 
    27 
    28 import com.sun.javadoc.ClassDoc;
       
    29 import com.sun.javadoc.DocErrorReporter;
       
    30 import com.sun.javadoc.PackageDoc;
       
    31 import com.sun.javadoc.RootDoc;
    28 import com.sun.javadoc.RootDoc;
    32 
    29 
    33 /**
    30 /**
    34  * This is not the doclet you are looking for.
    31  * This is not the doclet you are looking for.
    35  * @deprecated The doclet has been superseded by its replacement,
    32  * @deprecated The doclet has been superseded by its replacement,
    36  * {@link jdk.javadoc.doclet.StandardDoclet}.
    33  * {@link jdk.javadoc.doclet.StandardDoclet}.
    37  */
    34  */
    38 @Deprecated(forRemoval=true, since="9")
    35 @Deprecated(since="9", forRemoval=true)
    39 @SuppressWarnings("deprecation")
    36 @SuppressWarnings("removal")
       
    37 
    40 public class Standard {
    38 public class Standard {
    41 
    39 
    42     public static boolean start(RootDoc root) {
    40     public static boolean start(RootDoc root) {
    43         root.printNotice("Notice: " + "This is not the Standard Doclet");
    41         root.printNotice("Notice: " + "This is not the Standard Doclet");
    44         return true;
    42         return true;