Contents | Package | Class | Tree | Index
PREV | NEXT SHOW LISTS | HIDE LISTS

Class sun.tools.javadoc.ConstructorDoc

java.lang.Object
    |
    +----sun.tools.javadoc.Doc
            |
            +----sun.tools.javadoc.ProgramElementDoc
                    |
                    +----sun.tools.javadoc.MemberDoc
                            |
                            +----sun.tools.javadoc.ExecutableMemberDoc
                                    |
                                    +----sun.tools.javadoc.ConstructorDoc

public class ConstructorDoc
extends ExecutableMemberDoc
Represents a constructor of a java class.

Since:
JDK1.2

Method Summary
boolean  isConstructor()
Return true if it is a constructor, which it is.
java.lang.String  name()
Get the name.
java.lang.String  qualifiedName()
Get the name.
 
Methods inherited from class sun.tools.javadoc.ExecutableMemberDoc
 flatSignature, isNative, isSynchronized, parameters, paramTags, signature, thrownExceptions, throwsTags
 
Methods inherited from class sun.tools.javadoc.MemberDoc
 containingPackage, isIncluded, name, qualifiedName, toString
 
Methods inherited from class sun.tools.javadoc.ProgramElementDoc
 containingClass, isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, modifiers, modifierSpecifier
 
Methods inherited from class sun.tools.javadoc.Doc
 commentText, compareTo, getRawCommentText, isClass, isConstructor, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, name, seeTags, setRawCommentText, tags, tags, toString
 
Methods inherited from class java.lang.Object
 clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

qualifiedName

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

name

public java.lang.String name()
Get the name.
Returns:
the unqualified name of the member.
Overrides:
name in class MemberDoc

isConstructor

public boolean isConstructor()
Return true if it is a constructor, which it is.
Returns:
true
Overrides:
isConstructor in class Doc

Contents | Package | Class | Tree | Index
PREV | NEXT SHOW LISTS | HIDE LISTS