Class SimpleGroovyPackageDoc
java.lang.Object
org.codehaus.groovy.tools.groovydoc.SimpleGroovyDoc
org.codehaus.groovy.tools.groovydoc.SimpleGroovyPackageDoc
- All Implemented Interfaces:
java.lang.Comparable
,GroovyDoc
,GroovyPackageDoc
public class SimpleGroovyPackageDoc extends SimpleGroovyDoc implements GroovyPackageDoc
-
Field Summary
Fields inherited from class org.codehaus.groovy.tools.groovydoc.SimpleGroovyDoc
ANNOTATION_DEF, CLASS_DEF, ENUM_DEF, INTERFACE_DEF, TRAIT_DEF
-
Constructor Summary
Constructors Constructor Description SimpleGroovyPackageDoc(java.lang.String name)
-
Method Summary
Modifier and Type Method Description GroovyClassDoc[]
allClasses()
All included classes and interfaces in this package.GroovyClassDoc[]
allClasses(boolean arg0)
All classes and interfaces in this package optionally limited to just the included ones.java.lang.String
description()
Description of the package.GroovyClassDoc[]
enums()
Included enum types in this package.GroovyClassDoc[]
errors()
Included errors in this package.GroovyClassDoc[]
exceptions()
Included exceptions in this package.GroovyClassDoc
findClass(java.lang.String arg0)
Find a class or interface within this package.java.lang.String
getRelativeRootPath()
GroovyClassDoc[]
interfaces()
Included interfaces in this package.java.lang.String
nameWithDots()
GroovyClassDoc[]
ordinaryClasses()
Included ordinary classes in this package.void
putAll(java.util.Map<java.lang.String,GroovyClassDoc> classes)
void
setDescription(java.lang.String description)
void
setSummary(java.lang.String summary)
java.lang.String
summary()
The one-sentence summary for the package derived from the beginning of the description.Methods inherited from class org.codehaus.groovy.tools.groovydoc.SimpleGroovyDoc
calculateFirstSentence, commentText, compareTo, firstSentenceCommentText, getRawCommentText, getTypeDescription, getTypeSourceDescription, isAnnotationType, isAnnotationTypeElement, isClass, isConstructor, isDeprecated, isEnum, isEnumConstant, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, isScript, isTrait, name, setCommentText, setDeprecated, setFirstSentenceCommentText, setRawCommentText, setScript, setTokenType, tags, tokenType, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Comparable
compareTo
Methods inherited from interface org.codehaus.groovy.groovydoc.GroovyDoc
commentText, firstSentenceCommentText, getRawCommentText, isAnnotationType, isAnnotationTypeElement, isClass, isConstructor, isDeprecated, isEnum, isEnumConstant, isError, isException, isField, isIncluded, isInterface, isMethod, isOrdinaryClass, name, setRawCommentText
-
Constructor Details
-
SimpleGroovyPackageDoc
public SimpleGroovyPackageDoc(java.lang.String name)
-
-
Method Details
-
allClasses
Description copied from interface:GroovyPackageDoc
All included classes and interfaces in this package.- Specified by:
allClasses
in interfaceGroovyPackageDoc
- Returns:
- array of classes and interfaces found or empty array if none found
-
setDescription
public void setDescription(java.lang.String description) -
setSummary
public void setSummary(java.lang.String summary) -
putAll
-
nameWithDots
public java.lang.String nameWithDots()- Specified by:
nameWithDots
in interfaceGroovyPackageDoc
-
allClasses
Description copied from interface:GroovyPackageDoc
All classes and interfaces in this package optionally limited to just the included ones.- Specified by:
allClasses
in interfaceGroovyPackageDoc
- Parameters:
arg0
- Specifying true filters according to the specified access modifier option. Specifying false includes all classes and interfaces regardless of access modifier option.- Returns:
- array of classes and interfaces found or empty array if none found
-
enums
Description copied from interface:GroovyPackageDoc
Included enum types in this package.- Specified by:
enums
in interfaceGroovyPackageDoc
- Returns:
- array of enum types found or empty array if none found
-
errors
Description copied from interface:GroovyPackageDoc
Included errors in this package.- Specified by:
errors
in interfaceGroovyPackageDoc
- Returns:
- array of errors found or empty array if none found
-
exceptions
Description copied from interface:GroovyPackageDoc
Included exceptions in this package.- Specified by:
exceptions
in interfaceGroovyPackageDoc
- Returns:
- array of exceptions found or empty array if none found
-
findClass
Description copied from interface:GroovyPackageDoc
Find a class or interface within this package.- Specified by:
findClass
in interfaceGroovyPackageDoc
- Parameters:
arg0
- the name of the class to find- Returns:
- ClassDoc of found class or interface, or null if not found
-
interfaces
Description copied from interface:GroovyPackageDoc
Included interfaces in this package.- Specified by:
interfaces
in interfaceGroovyPackageDoc
- Returns:
- array of interfaces found or empty array if none found
-
ordinaryClasses
Description copied from interface:GroovyPackageDoc
Included ordinary classes in this package.- Specified by:
ordinaryClasses
in interfaceGroovyPackageDoc
- Returns:
- array of ordinary classes (non-interface, non-enum, non-throwable classes) found or empty array if none found
-
description
public java.lang.String description()Description copied from interface:GroovyPackageDoc
Description of the package.- Specified by:
description
in interfaceGroovyPackageDoc
- Returns:
- the description
-
summary
public java.lang.String summary()Description copied from interface:GroovyPackageDoc
The one-sentence summary for the package derived from the beginning of the description.- Specified by:
summary
in interfaceGroovyPackageDoc
- Returns:
- the summary
-
getRelativeRootPath
public java.lang.String getRelativeRootPath()- Specified by:
getRelativeRootPath
in interfaceGroovyPackageDoc
-