Simple to-do list application

Assignment Help JAVA Programming
Reference no: EM133214616

A simple To-do list application. The model would be the code that stores the To-do list items. The view would be the code that displays the To-do list items to the user. The controller would be the code that allows the user to add, remove, and edit To-do list items. The Observer Pattern would be used to connect the model, view, and controller together. Whenever the model is updated (e.g. an item is added, removed, or edited), the Observer Pattern would notify the view and controller so that they can update themselves accordingly.

Model:
public class ToDoList {
private ArrayList<String> items;
public ToDoList() {
items = new ArrayList<String>();
}
public void addItem(String item) {
items.add(item);
}
public void removeItem(String item) {
items.remove(item);
}
public void editItem(String oldItem, String newItem) {
int index = items.indexOf(oldItem);
items.set(index, newItem);
}
public ArrayList<String> getItems() {
return items;
}
}

View:
public class ToDoListView {
public void printToDoList(ToDoList toDoList) {
ArrayList<String> items = toDoList.getItems();
for (String item : items) {
System.out.println(item);
}
}
}

Controller:
public class ToDoListController {
private ToDoList toDoList;
private ToDoListView toDoListView;
public ToDoListController(ToDoList toDoList, ToDoListView toDoListView) {
this.toDoList = toDoList;
this.toDoListView = toDoListView;
}
public void addItem(String item) {
toDoList.addItem(item);
}

public void removeItem(String item) {
toDoList.removeItem(item);
}

public void editItem(String oldItem, String newItem) {
toDoList.editItem(oldItem, newItem);
}

public void updateView() {
toDoListView.printToDoList(toDoList);
}
}

Observer:
public class ToDoListObserver implements Observer {
private ToDoListController toDoListController;
public ToDoListObserver(ToDoListController toDoListController) {
this.toDoListController = toDoListController;
}
}

public class ToDoListTest {

public static void main(String[] args) {
ToDoList toDoList = new ToDoList();
System.out.println(toDoList);
}
}

Reference no: EM133214616

Questions Cloud

Development of a java project : The ultimate goal of this section is to generate a Java based project or game application of your choice, using all the Java concepts discussed in this course.
Return red color for trump and blue for clinton : b) modify the getColor () in a way that it should have a if else statement which should return red color for trump and blue for clinton.
Let account be the bank account class discussed in the class : Let Account be the bank account class discussed in the class. What balance will be stored in acct1, acct2, and acct3 after the following statements have been ex
Write a paper on how the states compare to each other : Use data on the above 6 variables collected by you to write a paper on how the 6 states compare to each other and which of these states would you rather live
Simple to-do list application : A simple To-do list application. The model would be the code that stores the To-do list items. The view would be the code that displays the To-do list items to
Create an application named grade whose main method : 1. Create an application named Grade whose main() method holds one string variable to hold your name. Accept the name from user. The application has two other m
Explain how statistics is used to formally define risk : Explain how statistics is used to formally define risk in risk assessment process. Discuss at least two statistical tools that can be employed to measure risk
Write a javascript function to add the books : Write a JavaScript function to add the following books in the library collection for author John Grisham. The number in the parentheses is the year of publicati
Make a program to make a class called shapeobject : make a program to make a class called ShapeObject and this class contains the below,

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd