scide: implement selectionLength for openDocument
[supercollider.git] / HelpSource / Classes / SCDocNode.schelp
blobebc55dbb1a128270ec03c767ce597e0e6462e645
1 title:: SCDocNode
2 summary:: An SCDoc parsed document node
3 related:: Classes/SCDoc
4 categories:: HelpSystem
6 description::
7 This class is used internally by link::Classes/SCDoc:: to represent a node in the parsed document tree returned by the  parser. It has an id symbol, optional text and optional children.
9 classmethods::
11 method:: new
12 Create a new node
14 instancemethods::
16 private:: addDivAfter, makeDiv, notPrivOnly, printOn, sort, sortClassDoc
18 method:: id
19 The node ID. A link::Classes/Symbol::
21 method:: text
22 Text associated with this node. A link::Classes/String:: or nil.
24 method:: children
25 Children of this node. A link::Classes/Array:: or nil.
27 method:: merge
28 Merge another document node tree with this one. Used by document additions (*.ext.schelp)
29 argument:: root2
30 Another SCDocNode instance.
32 method:: findChild
33 Find the first child of this node with specified id.
34 argument:: id
35 A link::Classes/Symbol::