I'm copying some code from another location and I'm confused about something that isn't working:
return new GeneralClickList<DCNotification>((Vector<DCNotification>) reader.executeReadQuery(query));
GeneralClickList is just an extended List that we use. I took this line from another class that just uses a different object:
return new GeneralClickList<AnotherObject>((Vector<AnotherObject>) reader.executeReadQuery(query));
On the first one above, I'm getting an error that says the constructor GeneralClickList<DCNotification>((Vector<DCNotific ation>) is undefined. I'm not sure what that means or what to do about it because the constructor for GeneralClickList doesn't reference the other object mentioned above in the second line of code either.
Hopefully this isn't too vague that someone could provide some sort of direction?