8157606: deprecate com.sun.javadoc API
Reviewed-by: ksrini
This commit is contained in:
parent
ac7bd384c3
commit
cfc5ca5719
@ -36,7 +36,12 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Mahmood Ali
|
||||
* @since 1.8
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface AnnotatedType extends Type {
|
||||
|
||||
/**
|
||||
|
@ -32,7 +32,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface AnnotationDesc {
|
||||
|
||||
/**
|
||||
@ -65,7 +71,13 @@ public interface AnnotationDesc {
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ElementValuePair {
|
||||
|
||||
/**
|
||||
|
@ -31,7 +31,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface AnnotationTypeDoc extends ClassDoc {
|
||||
|
||||
/**
|
||||
|
@ -31,7 +31,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface AnnotationTypeElementDoc extends MethodDoc {
|
||||
|
||||
/**
|
||||
|
@ -31,7 +31,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface AnnotationValue {
|
||||
|
||||
/**
|
||||
|
@ -40,7 +40,13 @@ package com.sun.javadoc;
|
||||
* @since 1.2
|
||||
* @author Kaiyang Liu (original)
|
||||
* @author Robert Field (rewrite)
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ClassDoc extends ProgramElementDoc, Type {
|
||||
|
||||
/**
|
||||
|
@ -30,6 +30,12 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @since 1.2
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ConstructorDoc extends ExecutableMemberDoc {
|
||||
}
|
||||
|
@ -37,7 +37,13 @@ import java.util.Locale;
|
||||
* @since 1.2
|
||||
* @author Robert Field
|
||||
* @author Scott Seligman (generics, enums, annotations)
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface Doc extends Comparable<Object> {
|
||||
|
||||
/**
|
||||
|
@ -30,7 +30,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @since 1.2
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface DocErrorReporter {
|
||||
|
||||
/**
|
||||
|
@ -47,7 +47,13 @@ package com.sun.javadoc;
|
||||
* <p> To start the doclet, pass
|
||||
* {@code -doclet} followed by the fully-qualified
|
||||
* name of the starting class on the javadoc tool command line.
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class Doclet {
|
||||
|
||||
/**
|
||||
|
@ -30,7 +30,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @since 1.2
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ExecutableMemberDoc extends MemberDoc {
|
||||
|
||||
/**
|
||||
|
@ -32,7 +32,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @since 1.2
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface FieldDoc extends MemberDoc {
|
||||
|
||||
/**
|
||||
|
@ -36,7 +36,13 @@ package com.sun.javadoc;
|
||||
* affecting doclets is 1.5.
|
||||
*
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public enum LanguageVersion {
|
||||
|
||||
/** 1.1 added nested classes and interfaces. */
|
||||
|
@ -37,7 +37,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Kaiyang Liu (original)
|
||||
* @author Robert Field (rewrite)
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface MemberDoc extends ProgramElementDoc {
|
||||
|
||||
/**
|
||||
|
@ -30,7 +30,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @since 1.2
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface MethodDoc extends ExecutableMemberDoc {
|
||||
|
||||
/**
|
||||
|
@ -36,7 +36,13 @@ package com.sun.javadoc;
|
||||
* @since 1.2
|
||||
* @author Kaiyang Liu (original)
|
||||
* @author Robert Field (rewrite)
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface PackageDoc extends Doc {
|
||||
|
||||
/**
|
||||
|
@ -33,7 +33,12 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ParamTag extends Tag {
|
||||
|
||||
/**
|
||||
|
@ -30,7 +30,13 @@ package com.sun.javadoc;
|
||||
* This includes a parameter type and parameter name.
|
||||
*
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface Parameter {
|
||||
|
||||
/**
|
||||
|
@ -42,7 +42,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ParameterizedType extends Type {
|
||||
|
||||
/**
|
||||
|
@ -35,7 +35,13 @@ package com.sun.javadoc;
|
||||
* @see ClassDoc
|
||||
*
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ProgramElementDoc extends Doc {
|
||||
|
||||
/**
|
||||
|
@ -34,7 +34,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @since 1.2
|
||||
* @author Robert Field
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface RootDoc extends Doc, DocErrorReporter {
|
||||
|
||||
/**
|
||||
|
@ -41,7 +41,12 @@ package com.sun.javadoc;
|
||||
* @author Robert Field (rewrite)
|
||||
* @author Atul M Dambalkar
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface SeeTag extends Tag {
|
||||
|
||||
/**
|
||||
|
@ -42,7 +42,13 @@ package com.sun.javadoc;
|
||||
* @author Joe Fialli
|
||||
*
|
||||
* @see java.io.ObjectStreamField
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface SerialFieldTag extends Tag, Comparable<Object> {
|
||||
|
||||
/**
|
||||
|
@ -33,7 +33,13 @@ import java.io.File;
|
||||
*
|
||||
* @since 1.4
|
||||
* @author Neal M Gafter
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface SourcePosition {
|
||||
/** The source file. Returns null if no file information is
|
||||
* available.
|
||||
|
@ -44,7 +44,12 @@ import java.util.Locale;
|
||||
* @see SerialFieldTag
|
||||
* @see Doc#tags()
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface Tag {
|
||||
|
||||
/**
|
||||
|
@ -34,7 +34,12 @@ package com.sun.javadoc;
|
||||
* @author Atul M Dambalkar
|
||||
* @see ExecutableMemberDoc#throwsTags()
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface ThrowsTag extends Tag {
|
||||
|
||||
/**
|
||||
|
@ -35,7 +35,13 @@ package com.sun.javadoc;
|
||||
* @author Kaiyang Liu (original)
|
||||
* @author Robert Field (rewrite)
|
||||
* @author Scott Seligman (generics)
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface Type {
|
||||
|
||||
/**
|
||||
|
@ -35,7 +35,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface TypeVariable extends Type {
|
||||
|
||||
/**
|
||||
|
@ -38,7 +38,13 @@ package com.sun.javadoc;
|
||||
*
|
||||
* @author Scott Seligman
|
||||
* @since 1.5
|
||||
*
|
||||
* @deprecated
|
||||
* The declarations in this package have been superseded by those
|
||||
* in the package {@code jdk.javadoc.doclet}.
|
||||
* For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
*/
|
||||
@Deprecated
|
||||
public interface WildcardType extends Type {
|
||||
|
||||
/**
|
||||
|
@ -27,6 +27,7 @@
|
||||
<p style="font-style: italic; font-size:larger">
|
||||
<b>Note:</b> The declarations in this package have been superseded by those
|
||||
in the package {@code jdk.javadoc.doclet}.
|
||||
For more information, see the <i>Migration Guide</i> in the documentation for that package.
|
||||
</p>
|
||||
|
||||
The Doclet API (also called the Javadoc API) provides a mechanism
|
||||
@ -149,4 +150,5 @@ producing output like:
|
||||
@see com.sun.javadoc.Doclet
|
||||
@see com.sun.javadoc.RootDoc
|
||||
*/
|
||||
@Deprecated
|
||||
package com.sun.javadoc;
|
||||
|
@ -64,8 +64,11 @@ import com.sun.javadoc.*;
|
||||
*
|
||||
* @since 1.4
|
||||
* @author Jamie Ho
|
||||
*
|
||||
* @deprecated
|
||||
* This interface has been superseded by one in the new package {@code jdk.javadoc.doclet.taglet}.
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface Taglet {
|
||||
|
||||
/**
|
||||
|
@ -42,6 +42,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class AbstractExecutableMemberWriter extends AbstractMemberWriter {
|
||||
|
||||
public AbstractExecutableMemberWriter(SubWriterHolderWriter writer,
|
||||
|
@ -50,6 +50,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class AbstractIndexWriter extends HtmlDocletWriter {
|
||||
|
||||
/**
|
||||
|
@ -47,6 +47,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Jamie Ho (Re-write)
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class AbstractMemberWriter {
|
||||
|
||||
protected final ConfigurationImpl configuration;
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.DocPath;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class AbstractPackageIndexWriter extends HtmlDocletWriter {
|
||||
|
||||
/**
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Atul M Dambalkar
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class AbstractTreeWriter extends HtmlDocletWriter {
|
||||
|
||||
/**
|
||||
|
@ -48,6 +48,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Doug Kramer
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class AllClassesFrameWriter extends HtmlDocletWriter {
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,7 @@ import com.sun.tools.doclets.internal.toolkit.*;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class AnnotationTypeFieldWriterImpl extends AbstractMemberWriter
|
||||
implements AnnotationTypeFieldWriter, MemberSummaryWriter {
|
||||
|
||||
|
@ -42,6 +42,7 @@ import com.sun.tools.doclets.internal.toolkit.*;
|
||||
* @author Jamie Ho
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class AnnotationTypeOptionalMemberWriterImpl extends
|
||||
AnnotationTypeRequiredMemberWriterImpl
|
||||
implements AnnotationTypeOptionalMemberWriter, MemberSummaryWriter {
|
||||
|
@ -42,6 +42,7 @@ import com.sun.tools.doclets.internal.toolkit.*;
|
||||
* @author Jamie Ho
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class AnnotationTypeRequiredMemberWriterImpl extends AbstractMemberWriter
|
||||
implements AnnotationTypeRequiredMemberWriter, MemberSummaryWriter {
|
||||
|
||||
|
@ -51,6 +51,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Robert Field
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class AnnotationTypeWriterImpl extends SubWriterHolderWriter
|
||||
implements AnnotationTypeWriter {
|
||||
|
||||
|
@ -52,6 +52,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Robert G. Field
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class ClassUseWriter extends SubWriterHolderWriter {
|
||||
|
||||
final ClassDoc classdoc;
|
||||
|
@ -55,6 +55,7 @@ import java.io.IOException;
|
||||
* @author Robert Field
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class ClassWriterImpl extends SubWriterHolderWriter
|
||||
implements ClassWriter {
|
||||
|
||||
|
@ -65,6 +65,7 @@ import com.sun.tools.javadoc.main.RootDocImpl;
|
||||
* @author Jamie Ho
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class ConfigurationImpl extends Configuration {
|
||||
|
||||
/**
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Bhavesh Patel (Modified)
|
||||
* @since 1.4
|
||||
*/
|
||||
@Deprecated
|
||||
public class ConstantsSummaryWriterImpl extends HtmlDocletWriter
|
||||
implements ConstantsSummaryWriter {
|
||||
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class ConstructorWriterImpl extends AbstractExecutableMemberWriter
|
||||
implements ConstructorWriter, MemberSummaryWriter {
|
||||
|
||||
|
@ -44,6 +44,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class DeprecatedListWriter extends SubWriterHolderWriter {
|
||||
|
||||
private static final String[] ANCHORS = new String[] {
|
||||
|
@ -43,6 +43,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Jamie Ho
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class EnumConstantWriterImpl extends AbstractMemberWriter
|
||||
implements EnumConstantWriter, MemberSummaryWriter {
|
||||
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Jamie Ho (rewrite)
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class FieldWriterImpl extends AbstractMemberWriter
|
||||
implements FieldWriter, MemberSummaryWriter {
|
||||
|
||||
|
@ -48,6 +48,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Atul M Dambalkar
|
||||
*/
|
||||
@Deprecated
|
||||
public class FrameOutputWriter extends HtmlDocletWriter {
|
||||
|
||||
/**
|
||||
|
@ -42,6 +42,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Atul M Dambalkar
|
||||
*/
|
||||
@Deprecated
|
||||
public class HelpWriter extends HtmlDocletWriter {
|
||||
|
||||
HtmlTree mainTree = HtmlTree.MAIN();
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Jamie Ho
|
||||
*
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlDoclet extends AbstractDoclet {
|
||||
// An instance will be created by validOptions, and used by start.
|
||||
private static HtmlDoclet docletToStart = null;
|
||||
|
@ -53,6 +53,7 @@ import com.sun.tools.javac.util.StringUtils;
|
||||
* @author Robert Field
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlDocletWriter extends HtmlDocWriter {
|
||||
|
||||
/**
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.taglets.*;
|
||||
* @author Joe Fialli
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlSerialFieldWriter extends FieldWriterImpl
|
||||
implements SerializedFormWriter.SerialFieldWriter {
|
||||
ProgramElementDoc[] members = null;
|
||||
|
@ -42,6 +42,7 @@ import com.sun.tools.doclets.internal.toolkit.taglets.*;
|
||||
* @author Joe Fialli
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlSerialMethodWriter extends MethodWriterImpl implements
|
||||
SerializedFormWriter.SerialMethodWriter{
|
||||
|
||||
|
@ -44,6 +44,7 @@ import com.sun.tools.doclets.internal.toolkit.util.links.*;
|
||||
* @author Jamie Ho
|
||||
* @since 1.5
|
||||
*/
|
||||
@Deprecated
|
||||
public class LinkFactoryImpl extends LinkFactory {
|
||||
|
||||
private HtmlDocletWriter m_writer;
|
||||
|
@ -37,6 +37,7 @@ import com.sun.tools.doclets.internal.toolkit.util.links.*;
|
||||
* This code and its internal interfaces are subject to change or
|
||||
* deletion without notice.</b>
|
||||
*/
|
||||
@Deprecated
|
||||
public class LinkInfoImpl extends LinkInfo {
|
||||
|
||||
public enum Kind {
|
||||
|
@ -38,6 +38,7 @@ import com.sun.tools.doclets.internal.toolkit.util.links.*;
|
||||
* @author Jamie Ho
|
||||
* @since 1.5
|
||||
*/
|
||||
@Deprecated
|
||||
public class LinkOutputImpl implements LinkOutput {
|
||||
|
||||
/**
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.javac.util.StringUtils;
|
||||
* @author Jamie Ho (rewrite)
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class MethodWriterImpl extends AbstractExecutableMemberWriter
|
||||
implements MethodWriter, MemberSummaryWriter {
|
||||
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Jamie Ho (rewrite)
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class NestedClassWriterImpl extends AbstractMemberWriter
|
||||
implements MemberSummaryWriter {
|
||||
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class PackageFrameWriter extends HtmlDocletWriter {
|
||||
|
||||
/**
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Atul M Dambalkar
|
||||
*/
|
||||
@Deprecated
|
||||
public class PackageIndexFrameWriter extends AbstractPackageIndexWriter {
|
||||
|
||||
/**
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class PackageIndexWriter extends AbstractPackageIndexWriter {
|
||||
|
||||
/**
|
||||
|
@ -44,6 +44,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class PackageTreeWriter extends AbstractTreeWriter {
|
||||
|
||||
/**
|
||||
|
@ -44,6 +44,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Robert G. Field
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class PackageUseWriter extends SubWriterHolderWriter {
|
||||
|
||||
final PackageDoc pkgdoc;
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class PackageWriterImpl extends HtmlDocletWriter
|
||||
implements PackageSummaryWriter {
|
||||
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Jamie Ho (rewrite)
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class PropertyWriterImpl extends AbstractMemberWriter
|
||||
implements PropertyWriter, MemberSummaryWriter {
|
||||
|
||||
|
@ -33,6 +33,7 @@ package com.sun.tools.doclets.formats.html;
|
||||
* This code and its internal interfaces are subject to change or
|
||||
* deletion without notice.</b>
|
||||
*/
|
||||
@Deprecated
|
||||
public class SearchIndexItem {
|
||||
|
||||
private String label = "";
|
||||
|
@ -35,6 +35,7 @@ package com.sun.tools.doclets.formats.html;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public enum SectionName {
|
||||
|
||||
ANNOTATION_TYPE_ELEMENT_DETAIL("annotation.type.element.detail"),
|
||||
|
@ -44,6 +44,7 @@ import com.sun.tools.doclets.internal.toolkit.util.DocletAbortException;
|
||||
*
|
||||
* @author Atul M Dambalkar
|
||||
*/
|
||||
@Deprecated
|
||||
public class SerializedFormWriterImpl extends SubWriterHolderWriter
|
||||
implements SerializedFormWriter {
|
||||
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class SingleIndexWriter extends AbstractIndexWriter {
|
||||
|
||||
private List<Object> elements;
|
||||
|
@ -47,6 +47,7 @@ import com.sun.tools.javadoc.main.SourcePositionImpl;
|
||||
* @author Bhavesh Patel (Modified)
|
||||
* @since 1.4
|
||||
*/
|
||||
@Deprecated
|
||||
public class SourceToHTMLConverter {
|
||||
|
||||
/**
|
||||
|
@ -46,6 +46,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class SplitIndexWriter extends AbstractIndexWriter {
|
||||
|
||||
/**
|
||||
|
@ -53,6 +53,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class SubWriterHolderWriter extends HtmlDocletWriter {
|
||||
|
||||
/**
|
||||
|
@ -49,6 +49,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public class TagletWriterImpl extends TagletWriter {
|
||||
|
||||
private final HtmlDocletWriter htmlWriter;
|
||||
|
@ -47,6 +47,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class TreeWriter extends AbstractTreeWriter {
|
||||
|
||||
/**
|
||||
|
@ -42,6 +42,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Jamie Ho
|
||||
* @since 1.5
|
||||
*/
|
||||
@Deprecated
|
||||
public class WriterFactoryImpl implements WriterFactory {
|
||||
|
||||
private final ConfigurationImpl configuration;
|
||||
|
@ -41,6 +41,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class Comment extends Content {
|
||||
|
||||
private String commentText;
|
||||
|
@ -35,6 +35,7 @@ import com.sun.tools.doclets.internal.toolkit.Content;
|
||||
/**
|
||||
* A sequence of Content nodes.
|
||||
*/
|
||||
@Deprecated
|
||||
public class ContentBuilder extends Content {
|
||||
protected List<Content> contents = Collections.<Content>emptyList();
|
||||
|
||||
|
@ -41,6 +41,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class DocType extends Content {
|
||||
|
||||
private String docType;
|
||||
|
@ -37,6 +37,7 @@ import com.sun.tools.javac.util.StringUtils;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public enum HtmlAttr {
|
||||
ALT,
|
||||
CLASS,
|
||||
|
@ -37,6 +37,7 @@ import com.sun.tools.doclets.internal.toolkit.Content;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlConstants {
|
||||
|
||||
/**
|
||||
|
@ -53,6 +53,7 @@ import com.sun.tools.doclets.internal.toolkit.util.DocPaths;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Robert Field
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class HtmlDocWriter extends HtmlWriter {
|
||||
|
||||
public static final String CONTENT_TYPE = "text/html";
|
||||
|
@ -42,6 +42,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlDocument extends Content {
|
||||
|
||||
private List<Content> docContent = Collections.<Content>emptyList();
|
||||
|
@ -35,6 +35,7 @@ package com.sun.tools.doclets.formats.html.markup;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public enum HtmlStyle {
|
||||
aboutLanguage,
|
||||
activeTableTab,
|
||||
|
@ -37,6 +37,7 @@ import com.sun.tools.javac.util.StringUtils;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public enum HtmlTag {
|
||||
A(BlockType.INLINE, EndTag.END),
|
||||
BLOCKQUOTE,
|
||||
|
@ -44,6 +44,7 @@ import com.sun.tools.doclets.formats.html.markup.HtmlAttr.Role;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlTree extends Content {
|
||||
|
||||
private HtmlTag htmlTag;
|
||||
|
@ -30,6 +30,7 @@ package com.sun.tools.doclets.formats.html.markup;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public enum HtmlVersion {
|
||||
HTML4,
|
||||
HTML5,
|
||||
|
@ -45,6 +45,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
* @author Atul M Dambalkar
|
||||
* @author Bhavesh Patel (Modified)
|
||||
*/
|
||||
@Deprecated
|
||||
public class HtmlWriter {
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class RawHtml extends Content {
|
||||
|
||||
private String rawHtmlContent;
|
||||
|
@ -41,6 +41,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Bhavesh Patel
|
||||
*/
|
||||
@Deprecated
|
||||
public class StringContent extends Content {
|
||||
|
||||
private StringBuilder stringContent;
|
||||
|
@ -41,6 +41,7 @@ import com.sun.tools.doclets.internal.toolkit.util.*;
|
||||
*
|
||||
* @author Jamie Ho
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class AbstractDoclet {
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,7 @@ import com.sun.javadoc.*;
|
||||
* @since 1.8
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface AnnotationTypeFieldWriter {
|
||||
|
||||
/**
|
||||
|
@ -40,6 +40,7 @@ import com.sun.javadoc.*;
|
||||
* @since 1.5
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface AnnotationTypeOptionalMemberWriter extends
|
||||
AnnotationTypeRequiredMemberWriter {
|
||||
|
||||
|
@ -42,6 +42,7 @@ import com.sun.javadoc.*;
|
||||
* @since 1.5
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface AnnotationTypeRequiredMemberWriter {
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,7 @@ import com.sun.javadoc.*;
|
||||
* @since 1.5
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface AnnotationTypeWriter {
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,7 @@ import com.sun.javadoc.*;
|
||||
* @since 1.5
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface ClassWriter {
|
||||
|
||||
/**
|
||||
|
@ -54,6 +54,7 @@ import com.sun.tools.javac.util.StringUtils;
|
||||
* @author Atul Dambalkar.
|
||||
* @author Jamie Ho
|
||||
*/
|
||||
@Deprecated
|
||||
public abstract class Configuration {
|
||||
|
||||
/**
|
||||
|
@ -43,6 +43,7 @@ import com.sun.javadoc.*;
|
||||
* @since 1.5
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface ConstantsSummaryWriter {
|
||||
|
||||
/**
|
||||
|
@ -41,6 +41,7 @@ import com.sun.javadoc.*;
|
||||
* @since 1.5
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public interface ConstructorWriter {
|
||||
|
||||
/**
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user