an Array of all Classes
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.
Find the Method referred to by name. If not found, return nil.
As above, but climb the class tree to see if the method is inherited from a superclass. If not found, return nil.
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.
Dump the byte codes of the named method.
Post the tree of all Classes that inherit from this class.
Post all the methods defined by this Class and their arguments.
Post all the class and instance methods that this class responds to (i.e. those defined in this class and those inherited by it).
Opens the help file for this Class if it exists.
Returns the path of this Class's helpfile as a String.
Opens the helpfile for the class in which the responding method is implemented.
Array.helpFileForMethod('select'); // This will open the Collection helpfile
Return this.
Return the name of the class as a String.
A Symbol that is the name of the class.
The next class in a linked list of all classes.
The Class from which this class directly inherits.
An Array of this class's superclasses, going back to Object.
An Array of the direct subclasses of this.
An Array of all subclasses of this.
An Array of the methods of this class.
An Array of the names of the instance variables for this class.
An Array of the names of the class variables for this class.
An Array of the initial values of instance variables.
An Array of the initial values of class variables.
A Symbol which is a path to the file which defines the Class.