More comparable issues
I'm trying to cast this ListNode into an Employee class so that I can access the lastName in that class....not sure what I'm doing wrong.
public int compareTo(Object o)
{
ListNode e = (ListNode)o;
return ((Employee) info).getLastName().compareTo(e.(Employee) info).getLastName());
}
my error says: identifier expected.

