package fallTest; import java.util.ArrayList; import java.util.LinkedList; import java.util.Queue; import javax.swing.JButton; public class LaneInfo { Queue sends = new LinkedList(); //Queue that dictates when to send the notes ArrayList nodes = new ArrayList(); //Array list containing all the notes currently on the field public void addSends(int t) { sends.add(new NoteInfo(t)); } public void addNodes(int t) { nodes.add(new Block()); } public ArrayList getNodes() { return nodes; } public Queue getSends() { return sends; } }