src/share/classes/com/sun/tools/doclets/internal/toolkit/package-info.java

Mon, 14 Oct 2013 16:28:44 -0700

author
jjg
date
Mon, 14 Oct 2013 16:28:44 -0700
changeset 2112
b9e3b55a908c
parent 554
src/share/classes/com/sun/tools/doclets/internal/toolkit/package.html@9d9f26857129
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8026371: "tidy" issues in langtools/src/**/*.html files
Reviewed-by: darcy

jjg@2112 1 /*
jjg@2112 2 * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
jjg@2112 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@2112 4 *
jjg@2112 5 * This code is free software; you can redistribute it and/or modify it
jjg@2112 6 * under the terms of the GNU General Public License version 2 only, as
jjg@2112 7 * published by the Free Software Foundation. Oracle designates this
jjg@2112 8 * particular file as subject to the "Classpath" exception as provided
jjg@2112 9 * by Oracle in the LICENSE file that accompanied this code.
jjg@2112 10 *
jjg@2112 11 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@2112 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@2112 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@2112 14 * version 2 for more details (a copy is included in the LICENSE file that
jjg@2112 15 * accompanied this code).
jjg@2112 16 *
jjg@2112 17 * You should have received a copy of the GNU General Public License version
jjg@2112 18 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@2112 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@2112 20 *
jjg@2112 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@2112 22 * or visit www.oracle.com if you need additional information or have any
jjg@2112 23 * questions.
jjg@2112 24 */
duke@1 25
jjg@2112 26 /**
jjg@2112 27 Contains the base classes that make up a doclet. Doclets that reuse
jjg@2112 28 the functionality provided by the toolkit should have the following
jjg@2112 29 characteristics:
jjg@2112 30 <ul>
jjg@2112 31 <li>
jjg@2112 32 The main driver class should extend
jjg@2112 33 {@link com.sun.tools.doclets.internal.toolkit.AbstractDoclet}.
jjg@2112 34 </li>
jjg@2112 35 <li>
jjg@2112 36 The doclet configuration class should extend
jjg@2112 37 {@link com.sun.tools.doclets.internal.toolkit.Configuration}.
jjg@2112 38 </li>
jjg@2112 39 <li>
jjg@2112 40 The doclet should have a writer factory that implements
jjg@2112 41 {@link com.sun.tools.doclets.internal.toolkit.WriterFactory}.
jjg@2112 42 This class constructs writers that write doclet specific output.
jjg@2112 43 </li>
jjg@2112 44 <li>
jjg@2112 45 The doclet should have a taglet writer that extends
jjg@2112 46 {@link com.sun.tools.doclets.internal.toolkit.taglets.TagletWriter}.
jjg@2112 47 This writer determines how to output each given tag.
jjg@2112 48 </li>
jjg@2112 49 </ul>
duke@1 50
jjg@2112 51 <p><b>This is NOT part of any supported API.
jjg@2112 52 If you write code that depends on this, you do so at your own risk.
jjg@2112 53 This code and its internal interfaces are subject to change or
jjg@2112 54 deletion without notice.</b>
jjg@2112 55 */
jjg@2112 56 @jdk.Exported(false)
jjg@2112 57 package com.sun.tools.doclets.internal.toolkit;

mercurial