... | ... | @@ -113,7 +113,6 @@ class FooBar implements MySimpleInterface { |
|
|
* Use alphanumeric characters and underscores for file names;
|
|
|
|
|
|
|
|
|
|
|
|
#### Service Naming Conventions
|
|
|
|
|
|
* A service name contains groups, separated by dots;
|
... | ... | @@ -122,7 +121,27 @@ class FooBar implements MySimpleInterface { |
|
|
* A group name uses the underscore notation;
|
|
|
* Each service has a corresponding parameter containing the class name, following the SERVICE NAME.class convention.
|
|
|
|
|
|
#### Method Names
|
|
|
|
|
|
|
|
|
When an object has a "main" many relation with related "things" (objects, parameters, ...), the method names are normalized:
|
|
|
|
|
|
```txt
|
|
|
|
|
|
get()
|
|
|
set()
|
|
|
has()
|
|
|
all()
|
|
|
replace()
|
|
|
remove()
|
|
|
clear()
|
|
|
isEmpty()
|
|
|
add()
|
|
|
register()
|
|
|
count()
|
|
|
keys()
|
|
|
|
|
|
```
|
|
|
|
|
|
### Documentation
|
|
|
|
... | ... | |