Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Insert page breaks in DG #211

Merged
merged 2 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/DeveloperGuide.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ For example, the `Logic` component defines its API in the `Logic.java` interface

The sections below give more details of each component.

<div style="page-break-after: always;"></div>

### UI component

The **API** of this component is specified in [`Ui.java`](https://github.com/AY2324S1-CS2103T-T12-3/tp/blob/master/src/main/java/seedu/address/ui/Ui.java)
Expand Down Expand Up @@ -109,6 +111,8 @@ The `UI` component is responsible for the following key features:
* Whenever a user performs an add, or delete operation, update the names of the tasks in the calendar accordingly
* Switching between different calendar months using buttons

<div style="page-break-after: always;"></div>

### Logic component

**API** : [`Logic.java`](https://github.com/AY2324S1-CS2103T-T12-3/tp/blob/master/src/main/java/seedu/address/logic/Logic.java)
Expand Down Expand Up @@ -143,6 +147,8 @@ shown above to parse the user command and create a `XYZCommand` object (e.g., `A
* All `XYZParser` classes (e.g., `AddAssignmentParser`, `DeleteAssignmentParser`, ...) inherit
from the `Parser` interface so that they can be treated similarly where possible e.g, during testing.

<div style="page-break-after: always;"></div>

### Model component
**API** : [`Model.java`](https://github.com/AY2324S1-CS2103T-T12-3/tp/blob/master/src/main/java/seedu/address/model/Model.java)

Expand All @@ -164,6 +170,7 @@ unmodifiable `ObservableList` that can be 'observed' e.g. the UI can be bound to
* stores a `UserPref` object that represents the user’s preferences. This is exposed to the outside as a `ReadOnlyUserPref` objects.
* does not depend on any of the other three components (as these components represent data entities of the domain, they should make sense on their own without depending on other components)

<div style="page-break-after: always;"></div>

### Storage component

Expand Down Expand Up @@ -477,6 +484,7 @@ The following sequence diagram illustrates how the list assignment operation wor
* [DevOps guide](DevOps.md)

--------------------------------------------------------------------------------------------------------------------
<div style="page-break-after: always;"></div>

## **Appendix A: Product Scope**

Expand Down
2 changes: 1 addition & 1 deletion docs/team/seewhyjay.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Given below are my contributions to the project.
#### CI/CD
* Implemented GitHub workflow to build and upload CampusCompanion's executable as an artifact on every PR for easy testing by reviewers.
* This is to circumvent the need to clone our teammates personal repositories to build the jar file then test their changes.
* Example: Scroll down to `Artifcats` on [PR#193](https://github.com/AY2324S1-CS2103T-T12-3/tp/actions/runs/6815714173?pr=193)
* Example: Scroll down to `Artifacts` on [PR#193](https://github.com/AY2324S1-CS2103T-T12-3/tp/actions/runs/6815714173?pr=193) and download `CampusCompanion executable`.

* **Documentation**:
* User Guide:
Expand Down
Loading