class CFPropertyList::CFInteger
This class holds integer/fixnum values
def to_binary(bplist)
def to_binary(bplist) bplist.num_to_binary(self) end
def to_plain(plist)
def to_plain(plist) @value.to_s end
def to_xml(parser)
def to_xml(parser) n = parser.new_node('integer') n = parser.append_node(n, parser.new_text(@value.to_s)) n end