Welcome to the Gluti chatbot!
- Text-based
- User-friendly
- Easy and Fast to use
- Download the release here!
- Launch it!
- Add your tasks
????Profit
- Task Manager
- Manages Deadlines!
- GUI
classDiagram
FileStorage <-- Gluti : Initalises
FileStorage --* Ui
Ui <-- Gluti : Calls
Parser-- FileStorage : Link
Ui --> Parser : Calls
Parser --> Todo
Parser --> Deadline
Parser --> Event
Task --|> Todo : Inheritance
Task--|> Deadline: Inheritance
Task--|> Event: Inheritance
class Gluti{ main()
}
class Ui{ boolean isExit
run()}
class Parser{FileStorage fstorage
boolean isExit
parse(String)
}
class FileStorage{ ArrayList<Task> taskList
checkifexist()
read(String)
saveList(taskList)
readList()
}
class Task {
protected String description
protected boolean isDone
getStatusIcon()
toString()
setDone()
setunDone()
isMatch(keyword)
}
class Todo {
@Override toString()
}
class Deadline {
protected String by
validDate(String)
}
class Event {
String[] date;
}
Prerequisites: JDK 11, update Intellij to the most recent version.
-
Open Intellij (if you are not in the welcome screen, click
File>Close Projectto close the existing project first) -
Open the project into Intellij as follows:
-
Click
Open. -
Select the project directory, and click
OK. -
If there are any further prompts, accept the defaults.
-
Configure the project to use JDK 11 (not other versions) as explained in here.
In the same dialog, set the Project language level field to the SDK default option.
- After that, locate the
src/main/java/Duke.javafile, right-click it, and chooseRun Duke.main()(if the code editor is showing compile errors, try restarting the IDE). If the setup is correct, you should see something like the below as the output:
static void main(String[] args) {
//Insert amazing Gluti code here!
}