Class: NQXML::Node
- Inherits:
-
Object
- Object
- NQXML::Node
- Defined in:
- lib/xmlrpc/parser.rb
Instance Method Summary collapse
- #[](index) ⇒ Object
- #childNodes ⇒ Object
- #hasChildNodes ⇒ Object
- #nodeName ⇒ Object
- #nodeType ⇒ Object
- #nodeValue ⇒ Object
- #removeChild(node) ⇒ Object
Instance Method Details
#[](index) ⇒ Object
24 25 26 |
# File 'lib/xmlrpc/parser.rb', line 24 def [] (index) @children[index] end |
#childNodes ⇒ Object
18 19 20 |
# File 'lib/xmlrpc/parser.rb', line 18 def childNodes @children end |
#hasChildNodes ⇒ Object
21 22 23 |
# File 'lib/xmlrpc/parser.rb', line 21 def hasChildNodes not @children.empty? end |
#nodeName ⇒ Object
41 42 43 44 |
# File 'lib/xmlrpc/parser.rb', line 41 def nodeName #TODO: error when wrong Entity-type @entity.name end |
#nodeType ⇒ Object
28 29 30 31 32 33 34 35 |
# File 'lib/xmlrpc/parser.rb', line 28 def nodeType if @entity.instance_of? NQXML::Text then :TEXT elsif @entity.instance_of? NQXML::Comment then :COMMENT #elsif @entity.instance_of? NQXML::Element then :ELEMENT elsif @entity.instance_of? NQXML::Tag then :ELEMENT else :ELSE end end |
#nodeValue ⇒ Object
37 38 39 40 |
# File 'lib/xmlrpc/parser.rb', line 37 def nodeValue #TODO: error when wrong Entity-type @entity.text end |
#removeChild(node) ⇒ Object
15 16 17 |
# File 'lib/xmlrpc/parser.rb', line 15 def removeChild(node) @children.delete(node) end |