This class contains an array of values
create a new array CFType
# File lib/facter/util/cfpropertylist/lib/rbCFTypes.rb, line 199 def initialize(val=[]) @value = val end
convert to binary
# File lib/facter/util/cfpropertylist/lib/rbCFTypes.rb, line 213 def to_binary(bplist) bplist.array_to_binary(self) end
convert to XML
# File lib/facter/util/cfpropertylist/lib/rbCFTypes.rb, line 204 def to_xml(parser) n = parser.new_node('array') @value.each do |v| n = parser.append_node(n, v.to_xml(parser)) end n end
Generated with the Darkfish Rdoc Generator 2.