class CFPropertyList::CFInteger

This class holds integer/fixnum values

def to_binary(bplist)

convert to binary
def to_binary(bplist)
  return bplist.num_to_binary(self)
end

def to_xml

convert to XML
def to_xml
  return LibXML::XML::Node.new('integer') << LibXML::XML::Node.new_text(@value.to_s)
end