1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<STYLE TYPE="text/css">@import "style.css";</STYLE>
</HEAD>
<BODY>
<H1>module Node</H1>
<HR>
Represents a node in the tree. Nodes are never encountered except as superclasses of other objects. Nodes have siblings.
<H2>Methods</H2>
<UL>
<LI>
<A HREF="#N16">indent</A>
</LI>
<LI>
<A HREF="#N5">next_sibling_node</A>
</LI>
<LI>
<A HREF="#NC">previous_sibling_node</A>
</LI>
<LI>
<A HREF="#N1D">read_with_substitution</A>
</LI>
<LI>
<A HREF="#N13">to_s</A>
</LI>
<LI>
<A HREF="#N19">write_with_substitution</A>
</LI>
</UL>
<HR>
<H2>Methods</H2>
<DIV CLASS="method">
<A NAME="N16">
<H3>indent</H3>
</A>
<HR>
</DIV>
<DIV CLASS="method">
<A NAME="N5">
<H3>next_sibling_node</H3>
</A><B style="padding-right: 1em;">Returns</B>
the next sibling (nil if unset)
<HR>
@return the next sibling (nil if unset)
</DIV>
<DIV CLASS="method">
<A NAME="NC">
<H3>previous_sibling_node</H3>
</A><B style="padding-right: 1em;">Returns</B>
the previous sibling (nil if unset)
<HR>
@return the previous sibling (nil if unset)
</DIV>
<DIV CLASS="method">
<A NAME="N1D">
<H3>read_with_substitution</H3>
</A>
<HR>
Reads text, substituting entities
</DIV>
<DIV CLASS="method">
<A NAME="N13">
<H3>to_s</H3>
</A>
<HR>
</DIV>
<DIV CLASS="method">
<A NAME="N19">
<H3>write_with_substitution</H3>
</A>
<HR>
Writes out text, substituting special characters beforehand.
</DIV>
<DIV CLASS="footer">
API documentation generated by <A HREF="http://www.germane-software.com/~ser/Software/api2xml">API2XML</A>
</DIV>
</BODY>
</HTML>
|