package edu.unca.cs.csci202; /** * * @author J Dean Broco */ public class IntList { private int item ; private IntList next ; public IntList(int item, IntList next) { this.item = item ; this.next = next ; } public IntList(int item) { this(item, null) ; } public IntList() { this(0, null) ; } public int getItem() { return item ; } public IntList getNext() { return next ; } public void setItem(int item) { this.item = item ; } public void setNext(IntList next) { this.next = next ; } }