public class Employee{
public String fNa;
public String lNa;
public String Title;
public int ID;
void doEmpThings()
}
public class Director extends Employee{
void doDrictorThings()
}
public class UseEmployee{
public static void main(String []args)
{codes}
}
public class UseDir{
public static void main(String []args)
{codes }
}
Now what i now discover is that each time i try to run the UseDir, the result given is always that of Employee codes, i don't know what to do, do i need to have common main method for them or the do i need to have the separably, well both are in the same package employeeand the editor i use is NetBeans how do i go about it.