Class MemberDocImpl
- java.lang.Object
-
- gw.gosudoc.com.sun.tools.javadoc.main.DocImpl
-
- gw.gosudoc.com.sun.tools.javadoc.main.ProgramElementDocImpl
-
- gw.gosudoc.com.sun.tools.javadoc.main.MemberDocImpl
-
- All Implemented Interfaces:
Doc
,MemberDoc
,ProgramElementDoc
,Comparable<Object>
- Direct Known Subclasses:
ExecutableMemberDocImpl
,FieldDocImpl
@Deprecated public abstract class MemberDocImpl extends ProgramElementDocImpl implements MemberDoc
Deprecated.Represents a member of a java class: field, constructor, or method. This is an abstract class dealing with information common to method, constructor and field members. Class members of a class (nested classes) are represented instead by ClassDocImpl.This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.
- Author:
- Robert Field, Neal Gafter
- See Also:
MethodDocImpl
,FieldDocImpl
,ClassDocImpl
-
-
Field Summary
-
Fields inherited from class gw.gosudoc.com.sun.tools.javadoc.main.DocImpl
documentation, env, treePath
-
-
Constructor Summary
Constructors Constructor Description MemberDocImpl(DocEnv env, com.sun.tools.javac.code.Symbol sym, com.sun.source.util.TreePath treePath)
Deprecated.constructor.
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description abstract boolean
isSynthetic()
Deprecated.Returns true if this field was synthesized by the compiler.-
Methods inherited from class gw.gosudoc.com.sun.tools.javadoc.main.ProgramElementDocImpl
annotations, containingClass, containingPackage, getContainingClass, getFlags, getModifiers, isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, modifiers, modifierSpecifier
-
Methods inherited from class gw.gosudoc.com.sun.tools.javadoc.main.DocImpl
commentText, compareTo, documentation, firstSentenceTags, getRawCommentText, inlineTags, isAnnotationType, isAnnotationTypeElement, isClass, isConstructor, isEnum, isEnumConstant, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, name, position, qualifiedName, seeTags, setRawCommentText, tags, tags, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface gw.gosudoc.com.sun.javadoc.Doc
commentText, compareTo, firstSentenceTags, getRawCommentText, inlineTags, isAnnotationType, isAnnotationTypeElement, isClass, isConstructor, isEnum, isEnumConstant, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, name, position, seeTags, setRawCommentText, tags, tags
-
Methods inherited from interface gw.gosudoc.com.sun.javadoc.ProgramElementDoc
annotations, containingClass, containingPackage, isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, modifiers, modifierSpecifier, qualifiedName
-
-
-
-
Constructor Detail
-
MemberDocImpl
public MemberDocImpl(DocEnv env, com.sun.tools.javac.code.Symbol sym, com.sun.source.util.TreePath treePath)
Deprecated.constructor.
-
-
Method Detail
-
isSynthetic
public abstract boolean isSynthetic()
Deprecated.Returns true if this field was synthesized by the compiler.- Specified by:
isSynthetic
in interfaceMemberDoc
- Returns:
- true if this member was synthesized by the compiler.
-
-