Overview | Package | Class | Tree | Deprecated | Index | Help | |||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Fields inherited from class java.io.Serializable | |
serialVersionUID |
Fields inherited from class java.io.Serializable | |
serialVersionUID |
Method Summary | |
ConstructorDoc[] | constructors()
Return constructors in class. |
PackageDoc | containingPackage()
Return the package that this class is contained in. |
boolean | definesSerializableFields()
Return true if Serializable fields are explicitly defined with the special class member serialPersistentFields . |
FieldDoc[] | fields()
Return fields in class. |
ClassDoc | findClass(java.lang.String className)
Find a class within the context of this class. |
ClassDoc[] | implementedInterfaces()
Deprecated. Use interfaces() - this method will go away by FCS. |
ClassDoc[] | importedClasses()
Get the list of classes declared as imported. |
PackageDoc[] | importedPackages()
Get the list of packages declared as imported. |
ClassDoc[] | innerClasses()
Return inner classes within this class. |
ClassDoc[] | interfaces()
Return interfaces implemented by this class or interfaces extended by this interface. |
boolean | isAbstract()
Return true if this class is abstract |
boolean | isExternalizable()
Return true if this class implements java.io. |
boolean | isSerializable()
Return true if this class implements java.io. |
MethodDoc[] | methods()
Return methods in class. |
java.lang.String | qualifiedName()
Return the qualified class name as a String. |
FieldDoc[] | serializableFields()
Return the Serializable fields of class. |
MethodDoc[] | serializationMethods()
Return the serialization methods for this class. |
boolean | subclassOf(ClassDoc cd)
Test whether this class is a subclass of the specified class. |
ClassDoc | superclass()
Return the superclass of this class |
Methods inherited from interface com.sun.javadoc.ProgramElementDoc | |
containingClass, isFinal, isPackagePrivate, isPrivate, isProtected, isPublic, isStatic, modifierSpecifier, modifiers |
Methods inherited from interface com.sun.javadoc.Type | |
asClassDoc, dimension, qualifiedTypeName, toString, typeName |
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 |
public boolean isAbstract()
public boolean isSerializable()
java.io.Serializable
.
Since java.io.Externalizable
extends
java.io.Serializable
,
Externalizable objects are also Serializable.public boolean isExternalizable()
java.io.Externalizable
.public MethodDoc[] serializationMethods()
MethodDoc
that represents
the serialization methods for this class.public FieldDoc[] serializableFields()
Return either a list of default fields documented by
serial
tag
or return a single FieldDoc
for
serialPersistentField
member.
There should be a serialField
tag for
each Serializable field defined by an ObjectStreamField
array component of serialPersistentField
.
public boolean definesSerializableFields()
serialPersistentFields
.public PackageDoc containingPackage()
public java.lang.String qualifiedName()
Example: for java.util.Hashtable return java.util.Hashtable if no qualifier, just return flat name
public ClassDoc superclass()
public boolean subclassOf(ClassDoc cd)
cd
- the candidate superclass.public ClassDoc[] interfaces()
public ClassDoc[] implementedInterfaces()
public FieldDoc[] fields()
public MethodDoc[] methods()
public ConstructorDoc[] constructors()
public ClassDoc[] innerClasses()
public ClassDoc findClass(java.lang.String className)
public ClassDoc[] importedClasses()
public PackageDoc[] importedPackages()
Overview | Package | Class | Tree | Deprecated | Index | Help | |||
PREV CLASS | NEXT CLASS | FRAMES | NO FRAMES | ||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |