Thanks to visit codestin.com
Credit goes to github.com

Skip to content

garywongkai/ip

 
 

Repository files navigation

Gluti project

Chatbot Mascot


Welcome to the Gluti chatbot!

Gluti is your chat task manager, it is:

  • Text-based
  • User-friendly
  • Easy and Fast to use

Setup

  1. Download the release here!
  2. Launch it!
  3. Add your tasks
  4. ???? Profit

Features

  • Task Manager
  • Manages Deadlines!
  • GUI

UML diagrams

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;

}

Loading

Setting up in Intellij

Prerequisites: JDK 11, update Intellij to the most recent version.

  1. Open Intellij (if you are not in the welcome screen, click File > Close Project to close the existing project first)

  2. Open the project into Intellij as follows:

  3. Click Open.

  4. Select the project directory, and click OK.

  5. If there are any further prompts, accept the defaults.

  6. 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.

  1. After that, locate the src/main/java/Duke.java file, right-click it, and choose Run 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:

The code 🔥

static void main(String[] args) {
	//Insert amazing Gluti code here!
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 91.6%
  • Shell 3.2%
  • CSS 2.8%
  • Batchfile 2.4%