Class: Plist::PTag

Inherits:
Object
  • Object
show all
Defined in:
lib/plist/parser.rb

Direct Known Subclasses

PArray, PData, PDate, PDict, PFalse, PInteger, PKey, PList, PReal, PString, PTrue

Constant Summary collapse

@@mappings =
{ }

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializePTag

Returns a new instance of PTag.



126
127
128
# File 'lib/plist/parser.rb', line 126

def initialize
  @children = Array.new
end

Instance Attribute Details

#childrenObject

Returns the value of attribute children.



125
126
127
# File 'lib/plist/parser.rb', line 125

def children
  @children
end

#textObject

Returns the value of attribute text.



125
126
127
# File 'lib/plist/parser.rb', line 125

def text
  @text
end

Class Method Details

.inherited(sub_class) ⇒ Object



117
118
119
120
121
122
123
# File 'lib/plist/parser.rb', line 117

def PTag::inherited( sub_class )
  key = sub_class.to_s.downcase
  key.gsub!(/^plist::/, '' )
  key.gsub!(/^p/, '')  unless key == "plist"

  @@mappings[key] = sub_class
end

.mappingsObject



113
114
115
# File 'lib/plist/parser.rb', line 113

def PTag::mappings
  @@mappings
end

Instance Method Details

#to_rubyObject



130
131
132
# File 'lib/plist/parser.rb', line 130

def to_ruby
  raise "Unimplemented: " + self.class.to_s + "#to_ruby on #{self.inspect}"
end