Class: RDoc::PuppetNode

Inherits:
PuppetClass show all
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

Methods inherited from PuppetClass

#add_child, #add_realize, #add_require, #add_resource, #find_symbol, #superclass=

Constructor Details

#initialize(name, superclass) ⇒ PuppetNode

Returns a new instance of PuppetNode.



172
173
174
# File 'lib/puppet/util/rdoc/code_objects.rb', line 172

def initialize(name, superclass)
  super(name,superclass)
end

Instance Method Details

#is_module?Boolean

Returns:

  • (Boolean)


176
177
178
# File 'lib/puppet/util/rdoc/code_objects.rb', line 176

def is_module?
  false
end