class RhEntitlement::Node

Attributes

children[RW]

Public Class Methods

new() click to toggle source
# File lib/rh_entitlement/certificate_urls.rb, line 197
def initialize
  @children = Array.new
end

Public Instance Methods

add_child(child) click to toggle source
# File lib/rh_entitlement/certificate_urls.rb, line 201
def add_child(child)
  @children.concat(Array.new(1, child))
end