The following styling conventions are used troughout our coding standards:
{functionname}()
If a name for a function should be used like public static setup() it will be written in italics with brackets after it. The name should be used in every language but of course the function has o be created according to the language like:
- Actionscript: public static function setup():
- Java: public static void()
- Objective-C: + (void) setup
- ...