class CFPropertyList::CFBoolean
This class contains a boolean value
def to_binary(bplist)
def to_binary(bplist) bplist.bool_to_binary(@value); end
def to_plain(plist)
def to_plain(plist) @value ? "true" : "false" end
def to_xml(parser)
def to_xml(parser) parser.new_node(@value ? 'true' : 'false') end