OneShotController explanation of what OneShotController is and/or does
Inherits from: Object : SimpleController
More detailed prose description of OneShotController.
See also: Object [some other help files]
Some Important Issues Regarding OneShotController (optional)
Explanation of the issues. For more information see Nil and [some other help files].
Creation / Class Methods
Accessing Instance and Class Variables
Doing Some Task (optional)
A short bit of prose explaining something about the task.
update (theChanger, what, moreArgs)
Short prose description of method.
theChanger - Explanation of theChanger. Default value is nil. Other information.
what - Explanation of what. Default value is nil. Other information.
moreArgs - Explanation of moreArgs. Default value is [ ]. Other information.
// inline example
g = OneShotController.update;
g.doSomething; // explanation
g.cleanUpMethod;
Examples
// what this example does
e = OneShotController.new;
e.instanceMethod(someObject);
e.cleanUp;
...