i'm trying to add a little order to my list box by alphabetizing the array list it gets the string from
the only problem is i keep running in to dead ends ><
can some 1 plz help
here's the class that sits in the array list
class Item { String name; int count; public Item (String name,int count){ this.name= name; this.count= count; } }
all i need is a sort method for an array list that will hold lots of them