class Saxerator::Builder::ArrayElement
Attributes
attributes[RW]
name[RW]
Public Class Methods
new(arr = [], name = nil, attributes = nil)
click to toggle source
Calls superclass method
# File lib/saxerator/builder/array_element.rb, line 8 def initialize(arr = [], name = nil, attributes = nil) @name = name @attributes = attributes super(arr) end
Public Instance Methods
to_a()
click to toggle source
# File lib/saxerator/builder/array_element.rb, line 14 def to_a; self end