This is an old revision of the document!
Naming Conventions
There are certain naming conventions used within the framework of which every user you should be aware of.
Get – get some property value or an item directly. If the get is non-trivial (indirect with a searching involved), also asserts the result is actually available (non-null).
Find – something like “get”, but doesn’t assert if the needed item is missing after the search.
Obtain – gets an item, if it already exists. Creates and returns a new one otherwise.