ManualPageBuilder-class {wyz.code.rdoc} | R Documentation |
Manual Page Builder
Description
Environment class ManualPageBuilder. Creates manual pages according to the given context.
Usage
ManualPageBuilder(inputContext_o_1,
processingContext_o_1 = ProcessingContext(),
generationContext_o_1 = GenerationContext())
Arguments
inputContext_o_1 |
The input context |
processingContext_o_1 |
The processing context |
generationContext_o_1 |
The generation context |
Value
An object instance of class ManualPageBuilder
.
Information
Environment fields
◆ colorizer | list |
◆ generationContext_o_1 | environment |
◆ inputContext_o_1 | environment |
◆ processingContext_o_1 | environment |
◆ self | environment |
◆ strategy | list |
Environment methods
■ assembleManualPage(pieces_l)
■ buildManualPage()
■ documentContent()
■ getStrategy
■ interpretResults(result_l)
offensive programming - semantic naming
Class name compliance is TRUE
.
offensive programming - function return types
Class owns no function return type instrumentation.
offensive programming - test case definitions
Class owns no test case definitions.
Note
As an end-user, you may prefer to use function produceManualPage
as its usage is much more straightforward.
As a programmer, this class eases programmation of your own manual page builder. See examples below.
Author(s)
Fabien Gelineau <neonira@gmail.com>
Maintainer: Fabien Gelineau <neonira@gmail.com>
See Also
Class InputContext
class ProcessingContext
and
class GenerationContext
.
Examples
ic <- InputContext(NULL, 'append', package = 'my.package.name')
m <- ManualPageBuilder(ic)
r <- m$buildManualPage()
interpretResults(r)