class Slaw::Grammars::Schedules::ScheduleContainer

Public Instance Methods

to_xml(b, idprefix="") click to toggle source
# File lib/slaw/grammars/schedules_nodes.rb, line 12
def to_xml(b, idprefix="")
  b.attachments { |b|
    schedules.children.elements.each_with_index { |e, i|
      e.to_xml(b, idprefix, i+1)
    }
  }
end