forked from AY2324S1-CS2103T-W08-3/tp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into branch-test-cases
- Loading branch information
Showing
14 changed files
with
582 additions
and
280 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -370,6 +370,8 @@ | |
page-break-before: always !important; | ||
} | ||
|
||
|
||
tr { | ||
page-break-inside: avoid; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
@startuml | ||
!include style.puml | ||
skinparam arrowThickness 1.2 | ||
skinparam arrowColor LOGIC_COLOR_T4 | ||
skinparam classBackgroundColor LOGIC_COLOR | ||
|
||
skinparam class { | ||
'workaround to render generics properly without breaking the rest | ||
BorderColor LOGIC_COLOR | ||
BorderThickness 0 | ||
|
||
StereotypeFontColor LOGIC_COLOR_T2 | ||
StereotypeFontSize 14 | ||
} | ||
|
||
'hidden boxes | ||
class " " as HiddenOutside1 <<Hidden>> | ||
class " " as HiddenOutside2 <<Hidden>> | ||
skinparam class { | ||
BorderColor<<Hidden>> #FFFFFF | ||
BackgroundColor<<Hidden>> #FFFFFF | ||
StereotypeFontColor<<Hidden>> #FFFFFF | ||
StereotypeFontSize<<Hidden>> 1 | ||
} | ||
|
||
'packages | ||
package Autocomplete as AutocompletePackage <<Rectangle>> { | ||
class AutocompleteGenerator | ||
class AutocompleteSupplier | ||
|
||
class "AutocompleteItemSet<T>" as AutocompleteItemSet | ||
class "<<interface>>\nAutocompleteConstraint<T>" as AutocompleteConstraint | ||
|
||
class "<<interface>>\nFlagValueSupplier" as FlagValueSupplier | ||
class PartitionedCommand | ||
} | ||
|
||
package Model as ModelPackage { | ||
} | ||
package "Parser classes" <<Rectangle>> { | ||
class Flag | ||
} | ||
|
||
'relationships | ||
HiddenOutside1 .down.> AutocompleteGenerator | ||
HiddenOutside2 .right.> AutocompleteSupplier | ||
|
||
AutocompleteGenerator -down-> "1" AutocompleteSupplier : uses > | ||
|
||
AutocompleteSupplier --> "1" AutocompleteItemSet | ||
AutocompleteSupplier --> "*" FlagValueSupplier | ||
AutocompleteSupplier ..> Flag | ||
|
||
AutocompleteItemSet --> "*" AutocompleteConstraint : contains > | ||
|
||
AutocompleteGenerator ..> PartitionedCommand : creates > | ||
FlagValueSupplier .right.> PartitionedCommand : uses > | ||
|
||
FlagValueSupplier ..down.> ModelPackage : uses > | ||
PartitionedCommand ..down.> Flag | ||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters