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