blob: 8c5287055dd339c6ae8bcb0a84fc0cdd2388ed39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
HypotheticalModule <IModuleInterface>
+staticProperty <String>
+anotherStaticProperty <Boolean>
::toggleAnotherStaticProperty()
::setStaticProperty(newValue <String>)
-instanceProperty <Number>
-anotherInstanceProperty <String>
#instanceMethodSync([optionalParameter]<Boolean>) => resultOfCall <String>
#instanceMethodAsync(someValue <Number>, [callback] <Function>) ->(error <String|null>, result <Number|null>)
// Comment
EventHypotheticalClass
+>AnotherClass<+staticEventToListen(eventData <PredefinedObject>) // More Comments
<+staticEventDispatched(someData <SomeData>)
~>listenedSocketEvent(eventData <SomeObject>)
<~dispatchedSocketEvent(eventData <BlaBla>)
->AnotherClass<-instanceEventToListen(eventData <Object>)
<-instanceEventDispatched(specificDataType <DefinedObject>)
|