Overview | Package | Class | Tree | Deprecated | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Interface com.sun.javadoc.MemberDoc

Subinterfaces:
ExecutableMemberDoc, FieldDoc

public abstract interface MemberDoc
extends ProgramElementDoc
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 (innerclasses) are represented instead by ClassDoc.

See Also:
MethodDoc, FieldDoc, ClassDoc

Fields inherited from class java.io.Serializable
serialVersionUID
 
Method Summary
 PackageDoc containingPackage()
          Return the package that this member is contained in.
 boolean isSynthetic()
          Returns true if this field was synthesized by the compiler.
 java.lang.String qualifiedName()
          Get the name.
 
Methods inherited from interface com.sun.javadoc.ProgramElementDoc
containingClass, isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, modifierSpecifier, modifiers
 
Methods inherited from interface com.sun.javadoc.Doc
commentText, compareTo, firstSentenceTags, getRawCommentText, inlineTags, isClass, isConstructor, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, name, seeTags, setRawCommentText, tags, tags
 

Method Detail

qualifiedName

public java.lang.String qualifiedName()
Get the name.
Returns:
the qualified name of the member.

containingPackage

public PackageDoc containingPackage()
Return the package that this member is contained in. Return "" if in empty package.

isSynthetic

public boolean isSynthetic()
Returns true if this field was synthesized by the compiler.

Overview | Package | Class | Tree | Deprecated | Index | Help
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD