java.util.List class actually holds "object reference" as its element. So by default the List can be used as generalized list:
List<?> myList = ...;
You can put list A as an element into list B.