class EDI::CDE

Composite data element, primarily used in the EDIFACT context. A “CDE” is a special Collection of type “S” (segment-like), similar to “Segment”.

Private Instance Methods

add( obj ) click to toggle source

Add a DE

Calls superclass method EDI::Collection#add
# File lib/edi4r.rb, line 854
def add( obj )
  raise "Only DE allowed here" unless obj.is_a? DE
  super
end