Forgot a help fix: Drag a dock's title bar, not divider, to reposition
[supercollider.git] / HelpSource / Classes / Class.schelp
blobf0d18c0dbc289770bce9c044e968c9a016fb1e16
1 class::Class
2 summary::A Class describes the structure and implementation of a set objects which are its instances.
3 categories::Core>Kernel, Language>OOP
5 ClassMethods::
6 method:: allClasses
7 returns:: an link::Classes/Array:: of all Classes
9 InstanceMethods::
11 method::browse
13 Open a graphical browser for this Class. (OSX only). Shows methods, arguments, variables, subclasses, and has buttons for navigating to the superclass, source, helpfile, cvs, etc.
15 method::findMethod
17 Find the Method referred to by name. If not found, return nil.
19 method::findRespondingMethodFor
21 As above, but climb the class tree to see if the method is inherited from a superclass. If not found, return nil.
23 method::dumpAllMethods
25 Post all instance methods which instances of this class responde too, including inherited ones. this.class.dumpAllMethods will post all class methods which this class responds to.
27 method::dumpByteCodes
29 Dump the byte codes of the named method.
31 method::dumpClassSubtree
33 Post the tree of all Classes that inherit from this class.
35 method::dumpInterface
37 Post all the methods defined by this Class and their arguments.
39 method::dumpFullInterface
41 Post all the class and instance methods that this class responds to (i.e. those defined in this class and those inherited by it).
43 method::help
45 Opens the help file for this Class if it exists.
47 method::helpFilePath
49 Returns the path of this Class's helpfile as a String.
51 method::helpFileForMethod
53 Opens the helpfile for the class in which the responding method is implemented.
55 Array.helpFileForMethod('select'); // This will open the Collection helpfile
57 method::asClass
59 Return this.
61 method::asString
63 Return the name of the class as a String.
66 subsection:: Accessing
68 method::name
70 A Symbol that is the name of the class.
72 method::nextclass
74 The next class in a linked list of all classes.
76 method::superclass
78 The Class from which this class directly inherits.
80 method::superclasses
82 An Array of this class's superclasses, going back to Object.
84 method::subclasses
86 An Array of the direct subclasses of this.
88 method::allSubclasses
90 An Array of all subclasses of this.
92 method::methods
94 An Array of the methods of this class.
96 method::instVarNames
98 An Array of the names of the instance variables for this class.
100 method::classVarNames
102 An Array of the names of the class variables for this class.
104 method::iprototype
106 An Array of the initial values of instance variables.
108 method::cprototype
110 An Array of the initial values of class variables.
112 method::filenameSymbol
114 A Symbol which is a path to the file which defines the Class.