Class: RDoc::PuppetNode
- Inherits:
-
PuppetClass
- Object
- ClassModule
- PuppetClass
- RDoc::PuppetNode
- Includes:
- AddClassModuleComment
- Defined in:
- lib/puppet/util/rdoc/code_objects.rb
Overview
PuppetNode holds a puppet node It is mapped to a HTMLPuppetNode for display A node is just a variation of a class
Instance Attribute Summary
Attributes inherited from PuppetClass
#childs, #realizes, #requires, #resource_list
Instance Method Summary collapse
-
#initialize(name, superclass) ⇒ PuppetNode
constructor
A new instance of PuppetNode.
- #is_module? ⇒ Boolean
Methods included from AddClassModuleComment
Methods inherited from PuppetClass
#add_child, #add_realize, #add_require, #add_resource, #aref_prefix, #find_symbol, #superclass=
Constructor Details
#initialize(name, superclass) ⇒ PuppetNode
Returns a new instance of PuppetNode.
187 188 189 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 187 def initialize(name, superclass) super(name,superclass) end |
Instance Method Details
#is_module? ⇒ Boolean
191 192 193 |
# File 'lib/puppet/util/rdoc/code_objects.rb', line 191 def is_module? false end |