package com.michaelthomas.list.linkedlist; /** * @author Michael Thomas (www.michael-thomas.com) michael@michael-thomas.com * */ import java.util.LinkedList; public class MyLinkedList { //NOTE: For learning, you must see the JUnit test file in the /test/ directory and matching package! private LinkedList myList = new LinkedList(); LinkedList buildMyLinkedList(){ myList.add("2"); myList.add("3"); myList.addFirst("1"); myList.addLast("4"); myList.push("0"); //Pushes to the top or beginning of the list return myList; } }