class EDI::Object
Basic (abstract) class: Makes sure that all derived EDI
objects have at least following attributes:
Attributes
name[RW]
parent[RW]
root[RW]
Public Class Methods
new(parent, root, name)
click to toggle source
# File lib/edi4r.rb, line 139 def initialize (parent, root, name) @parent, @root, @name = parent, root, name end