Title: No title
Domain: github.com
address: list = new ArrayList();
String again = "y";
Address item;
while(!again.equals("q")){
item = new Address();
item.readInfoFromUser();
list.add(item);
System.out.print("again? (q to quit)");
again = input.nextLine();
PersonDao personDao = new PersonDao();
personDao.create(item);
List list1 = personDao.getAll();
for (Address currentPerson : list1){
System.out.println(currentPerson);
}
}
}
}
Links: