Home | Trees | Index | Help |
|
---|
Package epydoc :: Module objdoc :: Class ObjDoc |
|
ClassDoc
,
FuncDoc
,
ModuleDoc
,
PropertyDoc
ObjDoc.STANDARD_FIELDS
; but the user
may also add new generic docstring fields (via
@newfield
or
__extra_epydoc_fields__
).
@sort
field.
Method Summary | |
---|---|
Create the documentation for the given object. | |
Accessors | |
UID
|
Return the UID of the object documented by this ObjDoc . |
markup.ParsedDocstring
|
Return a description of the object documented by this ObjDoc . |
list of DocField
|
Return a list of the fields that are given values in the docstring of the object documented by this ObjDoc . |
list of markup.ParsedDocstring
|
Return a list of the values that are specified for the given field in the docstring of the object documented by this ObjDoc . |
list of string
|
Return a list specifying the sort order that should be used for the object's children. |
list of string
|
Return a list of the names of the groups that are defined for the object documented by this ObjDoc . |
list of (string, elt)
|
Divide a set of elements into groups. |
boolean
|
Return true if the object documented by this ObjDoc has a
docstring. |
markup.ParsedDocstring
|
Return a summary of the description of the object documented by this ObjDoc . |
boolean
|
Return true if the object documented by this ObjDoc defines any
groups. |
Class Variable Summary | |
---|---|
Docstring Parsing | |
List of DocField |
STANDARD_FIELDS : The list of standard docstring fields that epydoc accepts. |
Method Details |
---|
uid(self)
|
descr(self)
|
fields(self)
|
field_values(self, field)
|
sortorder(self)
|
groups(self)
|
by_group(self, elts)Divide a set of elements into groups. Typical usage:
>>> grouped_funcs = fdoc.by_group(fdoc.functions())
>>> for (group, members) in grouped_funcs:
... print group, members
|
has_docstring(self)
|
summary(self)
|
defines_groups(self)
|
__init__(self,
uid,
verbosity=0,
docstring=None)
Create the documentation for the given object.
|
Class Variable Details |
---|
STANDARD_FIELDSThe list of standard docstring fields that epydoc accepts. The order of fields is significant: when the fields are rendered, they will be listed in the order that they are given in this list. Note that this list does not include special fields, such as "group"; it just includes "simple" fields, which contain a single textual description or a list of textual descriptions.
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1 on Sat Mar 20 17:46:17 2004 | http://epydoc.sf.net |