My code is kinda long an complex, but I continuously get a "cannot find symbol" error wherever I declare or instantiate an Arraylist.
import java.util.ArrayList;
...
java.util.Arraylist myList;
...
myList = new java.util.Arraylist();
Have I imported, declared, and instantiated it correctly? I tacked on "java.util" because I thought it might be a namespace issue, but the errors are still there.
Thank you for your help.