class CFPropertyList::CFUid

def to_binary(bplist)

convert to binary
def to_binary(bplist)
  bplist.uid_to_binary(@value)
end

def to_plain(plist)

def to_plain(plist)
  CFDictionary.new({'CF$UID' => CFInteger.new(@value)}).to_plain(plist)
end

def to_xml(parser)

def to_xml(parser)
  CFDictionary.new({'CF$UID' => CFInteger.new(@value)}).to_xml(parser)
end