Class: CFPropertyList::CFBoolean

Inherits:
CFType
  • Object
show all
Defined in:
lib/rbCFTypes.rb

Overview

This class contains a boolean value

Instance Attribute Summary

Attributes inherited from CFType

#value

Instance Method Summary collapse

Methods inherited from CFType

#initialize

Constructor Details

This class inherits a constructor from CFPropertyList::CFType

Instance Method Details

#to_binary(bplist) ⇒ Object

convert to binary



145
146
147
# File 'lib/rbCFTypes.rb', line 145

def to_binary(bplist)
  return bplist.bool_to_binary(@value);
end

#to_xmlObject

convert to XML



140
141
142
# File 'lib/rbCFTypes.rb', line 140

def to_xml
  return LibXML::XML::Node.new(@value ? 'true' : 'false')
end