do
ArrayList<ArrayList<URL>> announces = new ArrayList<ArrayList<URL>>();
Use interfaces for variables is nonsense. Obviously you are going to insert stuff into it, do yourself a favor, use exact types and you'll be happy. (You cannot insert into a List<? extends List<URL>>)
Now, if we expose this thing, like returning it from a method, then it becomes a problem what should be the proper type. List<List<URL>> is perfect. List<? extends List<URL>> is you are stoned.
Can we return the previously declared announces as a List<List<URL>>? Sure, why not. Just do a cast, we know it's safe. What if caller inserts a LinkedList<URL> into it? Who cares?