A simple console-based task management application developed in Java. This application enables users to manage tasks with functionalities to add, edit, view, delete, and mark tasks as completed. It uses Java's LocalDate
for handling due dates and features a text-based user interface for interaction.
- Add Task: Create a new task with a title, description, and due date.
- Edit Task: Modify the details of an existing task.
- View All Tasks: Display a list of all tasks with their details.
- Delete A Task: Remove a task from the list.
- Mark A Task As Completed: Mark a specific task as completed.
- Clone the Repository:
git clone https://github.com/shrutipuskar/Task-Manager.git
- Navigate to the Project Directory:
cd Task-Manager
- Compile the Code:
javac -d bin src/taskmanager/*.java
- Run the Application:
java -cp bin taskmanager.Main
When you run the application, you will see a menu with the following options:
- Add Task: Enter the task title, description, and due date.
- Edit Task: Specify the task number to edit and provide new details.
- View All Tasks: Display all tasks with their details.
- Delete A Task: Choose the task number to delete it.
- Mark A Task As Completed: Mark a task as completed by its number.
- Exit: Exit the application.
Follow the on-screen prompts to interact with the application.
The Task
class represents a task in the system with the following attributes:
- title: The title of the task.
- description: A brief description of the task.
- dueDate: The due date of the task.
- completed: Status indicating whether the task is completed or not.
- Constructor: Initializes a task with the provided title, description, and due date.
- Getters and Setters: For accessing and modifying attributes, with data validation.
The TaskManager
class manages a list of Task
objects and provides methods to manipulate them:
- addTask(String title, String description, LocalDate dueDate): Adds a new task to the list.
- editTask(int index, String title, String description, LocalDate dueDate): Edits a task at the specified index.
- getTasks(): Returns a list of all tasks.
- viewTasks(): Prints all tasks to the console.
- deleteTask(int index): Removes a task at the specified index.
- markTaskAsCompleted(int index): Marks a task as completed.
If you would like to contribute to this project:
- Fork the repository.
- Create a feature branch (
git checkout -b feature-branch
). - Commit your changes (
git commit -am 'Add new feature'
). - Push to the branch (
git push origin feature-branch
). - Open a Pull Request.