File: Node.xml

package info (click to toggle)
librexml-ruby 1.2.5-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 792 kB
  • ctags: 655
  • sloc: ruby: 3,778; xml: 1,609; java: 109; makefile: 43
file content (24 lines) | stat: -rw-r--r-- 765 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE module>
<module name='Node'>
   Represents a node in the tree.  Nodes are never encountered except as superclasses of other objects.  Nodes have siblings.
  <method name='next_sibling_node'>
    <return>
      the next sibling (nil if unset)
    </return>
     @return the next sibling (nil if unset)
  </method>
  <method name='previous_sibling_node'>
    <return>
      the previous sibling (nil if unset)
    </return>
     @return the previous sibling (nil if unset)
  </method>
  <method name='to_s'/>
  <method name='indent'/>
  <method name='write_with_substitution'>
     Writes out text, substituting special characters beforehand. 
  </method>
  <method name='read_with_substitution'>
     Reads text, substituting entities
  </method>
</module>