Guest User

Untitled

a guest
Jan 14th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.27 KB | None | 0 0
  1.     public TaskList clone() {
  2.         LinkedTaskList clone = null;
  3.         clone = (LinkedTaskList) super.clone();
  4.         clone.count = 0;
  5.         for (int i = 0; i < this.size(); i++) {
  6.             clone.add(this.getTask(i));
  7.         }
  8.         return clone;
  9.     }
Add Comment
Please, Sign In to add comment