cannot resolve symbol
843810Oct 15 2003 — edited Apr 1 2004I'm a beginner in JAVA and I got this message trying to compile TestEmployee(see below). Employee class compiled OK. Any ideas?
C:\java\chapter3\bin\TestEmployee.java:5: cannot resolve symbol
symbol : class Employee
location: class TestEmployee
Employee tester = new Employee ();
public class Employee
{
private int empNum;
public void setEmpNum(int num)
{
empNum = num;
}
}
--------------------------------
public class TestEmployee
{
public static void main(String[] args)
{
Employee tester = new Employee ();
}
}