connect() getData() buildSomeWidget()
-Private methods (meaning methods that an intented to be called only from
-within the same class; PHP does not yet support truly-enforceable private
-namespaces) are preceeded by a single underscore. For example:
+Private class members (meaning class members that an intented to be used
+only from within the same class in which they are declared; PHP does not yet
+support truly-enforceable private namespaces) are preceeded by a single
+underscore. For example:
- _sort() _initTree() _validateInput()
+ _sort() _initTree() $_status
------------