Event class: protected List<Event> eventList = new ArrayList<Event>();
I have another class, a popup box which the user adds event information and an event object is created and added to the list. However i use the eventList, java doesn't recognise it even though it is in same package and protected should be able to be accessed in same package.
How do i access?