Package org.prevayler.socketserver.example.server

Examples of org.prevayler.socketserver.example.server.TodoList.toArray()


*/
public class Main {

  public static synchronized void printList(Object todoList) {
    TodoList theList = (TodoList) todoList;
    Todo[] items = theList.toArray();
    for (int i = 0; i < items.length; i++) {
      System.out.println(items[i].getId() + "\t" + items[i].getDesc());
    }
    System.out.println();
  }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.