langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/package-info.java
author jjg
Tue, 09 Aug 2016 13:22:57 -0700
changeset 40303 96a1226aca18
parent 35426 374342e56a56
permissions -rw-r--r--
8160697: HTMLWriter needs perf cleanup Reviewed-by: ksrini, bpatel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
21019
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     1
/*
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34916
diff changeset
     2
 * Copyright (c) 2003, 2016, Oracle and/or its affiliates. All rights reserved.
21019
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     4
 *
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    10
 *
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    15
 * accompanied this code).
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    16
 *
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    20
 *
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    23
 * questions.
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    24
 */
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
21019
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    26
/**
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    27
    Contains the base classes that make up a doclet.  Doclets that reuse
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    28
    the functionality provided by the toolkit should have the following
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    29
    characteristics:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
21019
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    31
    <p><b>This is NOT part of any supported API.
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    32
    If you write code that depends on this, you do so at your own risk.
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    33
    This code and its internal interfaces are subject to change or
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    34
    deletion without notice.</b>
ce43db751581 8026371: "tidy" issues in langtools/src/**/*.html files
jjg
parents: 5520
diff changeset
    35
*/
35426
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34916
diff changeset
    36
374342e56a56 8035473: [javadoc] Revamp the existing Doclet APIs
ksrini
parents: 34916
diff changeset
    37
package jdk.javadoc.internal.doclets.toolkit;