If you want a Collection class that will allow you to add items and remove the earlier items, here is one I just made. Feel free to use/add/whatever to it:

import java.util.Vector;

public class...