-
Notifications
You must be signed in to change notification settings - Fork 197
[JinbaoAlex] iP #186
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
Open
JinbaoAlex
wants to merge
28
commits into
nus-cs2113-AY2425S2:master
Choose a base branch
from
JinbaoAlex:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
[JinbaoAlex] iP #186
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
288af6d
Level-0
JinbaoAlex df3b9c3
Level-1 Echo
JinbaoAlex 2477cf4
Level-2 Added ability to store whatever text entered by the user and …
JinbaoAlex 55f740f
Level-3 and A-Classes Added the ability to mark tasks as done, the a…
JinbaoAlex 8b981b3
Level-3 and A-Classes Added the ability to mark tasks as done, the a…
JinbaoAlex dc2fcfe
Level-4 Add support for tracking todos, deadlines, and events as tasks
JinbaoAlex 9067561
improved code quality, added tags to past commits
JinbaoAlex 95b59f4
A-Exceptions Added exception handling for mark and unmark commands
JinbaoAlex ed07bac
Level-5 Handling errors in mark/unmark and todo/deadline/event
JinbaoAlex fa886f8
Merge branch 'branch-Level-5'
JinbaoAlex 02d80d2
Level-6 added delete command
JinbaoAlex fe957b7
Level-7 added ability to save and load data
JinbaoAlex 7947949
Merge branch 'branch-Level-6'
JinbaoAlex cb13a7e
Merge branch 'branch-Level-7'
JinbaoAlex ab17569
FIxed mistakes in delete and save commands
JinbaoAlex 83911f6
A-MoreOOP Refactor code for oop with Ui, Storage, Parser, Tasklist, a…
JinbaoAlex b90a9f5
Level-8 Date and Times
JinbaoAlex c2a95b1
Level-9 Added find feature
JinbaoAlex fca55c5
A-JavaDoc Added JavaDoc comments for most methods and classes
JinbaoAlex e572876
Merge pull request #1 from JinbaoAlex/branch-Level-8
JinbaoAlex 2be662a
Merge pull request #2 from JinbaoAlex/branch-Level-9
JinbaoAlex be52433
Merge branch 'master' of https://github.com/JinbaoAlex/ip
JinbaoAlex ea6a275
Merge branch 'branch-A-JavaDoc'
JinbaoAlex 7e2666d
Added more javadoc comments
JinbaoAlex ace02c7
added some additional exception handling
JinbaoAlex 6d4f779
updated userguide and customised the chatbot's message
JinbaoAlex 3f539fc
added summary table for the user guide
JinbaoAlex 1bcf83b
add A-UserGuide tag
JinbaoAlex File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,11 @@ | ||
| public class Volkov { | ||
| public static void main(String[] args) { | ||
| String logo = "____________________________________________________________\n" | ||
| + "Hello! I'm Volkov\n" | ||
| + "What can I do for you?\n" | ||
| + "____________________________________________________________\n" | ||
| + "Bye. Hope to see you again soon!\n" | ||
| + "____________________________________________________________\n"; | ||
| System.out.println(logo); | ||
| } | ||
| } |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like that the code complies with the Java Coding Standard.