update class diagram v2 electric boogalo authored by Pőcze Barnabás's avatar Pőcze Barnabás
...@@ -16,11 +16,12 @@ package Model.Inspection { ...@@ -16,11 +16,12 @@ package Model.Inspection {
+ ClearWeakEventHandlers() + ClearWeakEventHandlers()
} }
class Command : InspectionElement { class Command {
+ CommandSignature : Signature + CommandSignature : Signature
+ CanExecute : bool + CanExecute : bool
+ Execute(object...) : object + Execute(object...) : object
} }
Command --|> InspectionElement
class Command.Signature { class Command.Signature {
+ Arguments: ICollection<Type> + Arguments: ICollection<Type>
... ...
......