示例#1
0
 @Override
 public void optionSelected() {
   Collection<Book> booksFound = bookDao.findAllBooks();
   System.out.println("Folgende Bücher sind registriert:");
   for (Book book : booksFound) {
     System.out.println("" + book);
   }
   CharacterReader.readString("Bitte drücken sie any key für weiter");
 }