/* * Created on 24.11.2003 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ /** * @author klaus * * To change the template for this generated type comment go to * Window>Preferences>Java>Code Generation>Code and Comments */ public class LinListTest { public static void main(String[] args) { LinearCharList testList = new LinearCharList(); testList.removeFirst(); testList.addFirst(2); testList.addFirst(3); testList.addFirst(5); testList.output(); testList.addFirst(8); testList.addFirst(11); testList.addFirst(51); testList.addFirst(54); testList.removeLast(); testList.removeLast(); testList.addFirst(14); testList.output(); testList.removeFirst(); testList.removeFirst(); testList.output(); } }