Skip to content

Commit 7b03c8f

Browse files
authored
Merge pull request #256 from AY1920S1-CS2103T-W12-3/developer-guide
Developer Guide
2 parents a2c500d + 4a02f57 commit 7b03c8f

File tree

107 files changed

+12141
-596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+12141
-596
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ dependencies {
7171
}
7272

7373
shadowJar {
74-
archiveName = 'PalPay-v1.4-alpha.jar'
74+
archiveName = 'PalPay-v1.4.jar'
7575

7676
destinationDir = file("${buildDir}/jar/")
7777
}

docs/AboutUs.adoc

Lines changed: 4 additions & 4 deletions

docs/DeveloperGuide.adoc

Lines changed: 405 additions & 90 deletions

docs/DeveloperGuide.html

Lines changed: 2947 additions & 0 deletions
Large diffs are not rendered by default.

docs/UserGuide.adoc

Lines changed: 329 additions & 152 deletions

docs/UserGuide.html

Lines changed: 2612 additions & 0 deletions
Large diffs are not rendered by default.
2.22 MB
Binary file not shown.
1.76 MB
Binary file not shown.

docs/diagrams/ArchitectureSequenceDiagram.puml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ activate ui UI_COLOR
1313
ui -[UI_COLOR]> logic : execute("delete t1")
1414
activate logic LOGIC_COLOR
1515

16-
logic -[LOGIC_COLOR]> model : deleteTransaction(t1)
16+
logic -[LOGIC_COLOR]> model : delete(t1)
1717
activate model MODEL_COLOR
1818

1919
model -[MODEL_COLOR]-> logic
2020
deactivate model
2121

22-
logic -[LOGIC_COLOR]> storage : saveBankAccount(bankAccount)
22+
logic -[LOGIC_COLOR]> storage : saveUserState(userState)
2323
activate storage STORAGE_COLOR
2424

2525
storage -[STORAGE_COLOR]> storage : Save to file

docs/diagrams/LedgerOperationDiagram.puml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ skinparam classBackgroundColor MODEL_COLOR
66

77
Package Ledger <<Rectangle>>{
88

9+
Class Ledger
910
Package Transaction {
1011
Interface LedgerOperation <<Interface>>
11-
Class Ledger
1212

1313
Class Transaction <<abstract>>
1414

@@ -32,8 +32,8 @@ Class HiddenOutside #FFFFFF
3232
'UniquePersonList
3333
UniquePersonList ---"*" Person
3434

35-
Transaction --- Amount
36-
Transaction --- Date
35+
Transaction ---"1" Amount
36+
Transaction ---"1" Date
3737

3838
'ledger operation
3939
Ledger o--> LedgerOperation

0 commit comments

Comments
 (0)