class CFPropertyList::CFBoolean

This class contains a boolean value

def to_binary(bplist)

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

def to_xml(parser)

convert to XML
def to_xml(parser)
  parser.new_node(@value ? 'true' : 'false')
end