scide: implement selectionLength for openDocument
[supercollider.git] / HelpSource / Classes / ObjectTable.schelp
blobd2432810c9fa9961445e8fbefb5387c7cfc39239
1 CLASS::ObjectTable
2 summary::associate objects with IDs
3 categories:: Collections>Unordered
5 DESCRIPTION::
6 An ObjectTable is used to associate an id with an object. This is useful
7 for enabling references to objects on remote systems via Open Sound Control.
9 CLASSMETHODS::
11 private::initClass
13 method::add
14 Put an object in the main ObjectTable and generate an Integer id.
15 argument::obj
16 the object to put in the table.
18 method::put
19 Put an object in the main ObjectTable under a specific key.
20 argument::key
21 a link::Classes/Symbol::.
22 argument::obj
23 the object to put in the table.
25 method::at
26 Get an object in the main ObjectTable.
27 argument::id
28 an link::Classes/Integer:: or link::Classes/Symbol::.
30 method::getID
31 Get the ID of an object in the table.
32 argument::obj
33 an object in the table.
35 INSTANCEMETHODS::
37 method::add
38 Put an object in an ObjectTable and generate an Integer id.
39 argument::obj
40 the object to put in the table.