| OODoc documentation | view source | Contained in the OODoc distribution. |
OODoc::Text::Section - collects the text of one section within a chapter
OODoc::Text::Section is a OODoc::Text::Structure is a OODoc::Text is a OODoc::Object
my $chapter = $section->chapter;
my @subsect = $section->subsections;
my $index = $section->subsection('INDEX');
my $index = OODoc::Text::SubSection->new(...);
$section->subsection($index); # add subsection
-Option --Defined in --Default chapter <required> container OODoc::Text new(chapter) description OODoc::Text '' level OODoc::Text::Structure 2 linenr OODoc::Text <required> name OODoc::Text undef type OODoc::Text 'Section'
Returns the chapter object for this section.
With a NAME, the subsection within this section with that name is returned. With an OBJECT (which must be a OODoc::Text::SubSection), a new subsection is added to the end of the list.
Returns a list of all subsections in this chapter.
OODoc::Text::Section->filenameToPackage(FILENAME)
OODoc::Text::Section->mkdirhier(DIRECTORY)
A call to addManual() expects a new manual object (a OODoc::Manual), however an incompatible thing was passed. Usually, intended was a call to manualsForPackage() or mainManual().
This module is part of OODoc distribution version 1.06, built on January 26, 2011. Website: http://perl.overmeer.net/oodoc/
Copyrights 2003-2011 by Mark Overmeer. For other contributors see ChangeLog.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See http://www.perl.com/perl/misc/Artistic.html
| OODoc documentation | view source | Contained in the OODoc distribution. |