In class Browser I have the field
private ArrayList<WineCase> basket;
and also I have created the ArrayList within the constructor:
basket = new ArrayList<WineCase>();
In class Website I have to access this ArrayList. When I try to compile this for-each header:
for(WineCase wineCase : basket)
the error is that "variable basket is not declared". How to declare the ArrayList from Browser class ?