Skip to content

Commit

Permalink
src/main/java/domain/checks/ParamterCountCheck.java added
Browse files Browse the repository at this point in the history
  • Loading branch information
rhit-shirakrk committed May 9, 2024
1 parent 510f6f0 commit 13c079e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions uml/classes.puml
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,13 @@ package domain.checks {
-containsConcreteImplementers(it: ClassGraphIterator, obsClasses: Set<String>, it2: ClassGraphIterator, patternFound: boolean): boolean
-isConcreteClass(it: ClassGraphIterator, it2: ClassGraphIterator, j: int): boolean
}

class ParameterCountCheck {
-{static} NAME: String
-{static} MAX_NUM_PARAMS_KEY: String
+run(classes: ClassDataCollection, config: Configuration): Set<Message>
-checkClass(classData: ClassData, maxNumParams: int, messages: Set<Message>): void
}
}

exception IOException {
Expand Down Expand Up @@ -318,6 +325,7 @@ MethodLengthCheck --|> Check
NamingConventionsCheck --|> Check
NoGlobalVariablesCheck --|> Check
ObserverPatternCheck --|> GraphCheck
ParameterCountCheck --|> Check

' exceptions
FileNotFoundException --|> IOException
Expand Down

0 comments on commit 13c079e

Please sign in to comment.