Hiya, ive got this working for you but I have a few notes id like to share. According to my course materials a private instance variable is never inherited, so making the var's private is not gonna work proper. Also when you use System.out.print(testing); I think you are just getting the memory location for an object but im not sure tbh.
To get this to work you need a method to output the info, maybe other ways but it seemed the simplist way. Also your naming of classes and var's seems odd i.e Class(has initial capital) myVar(has capital seperation) ive renamed these for you also. Im new and only just started my java courses so probly better ways to do this but it compiles and works so hey who cares right? 
Here is the code from my 3 .java files hope this helps.
Main.java
Code:
public class Main
{
public Main()
{
}
public static void main(String[] args)
{
ProductionWorker test1 = new ProductionWorker("Joe", "123-Y", "11/15/08", 1, 11.05);
test1.showProductionWorker();
ProductionWorker test2 = new ProductionWorker("Sam", "123-Y", "11/15/08", 1, 11.05);
test2.showProductionWorker();
}
}
Employee.java
Code:
public class Employee
{
public String fName;
public String employeeNum;
public String hireDate;
public Employee(String n, String e, String h)
{
fName = n;
employeeNum = e;
hireDate = h;
}
}
ProductionWorker.java
Code:
public class ProductionWorker extends Employee {
private int shift;
private double payRate;
public ProductionWorker(String n, String e, String h, int s, double p)
{
super(n,e,h);
shift = s;
payRate = p;
}
public void showProductionWorker()
{
System.out.println("Emploee Name:" + " " + fName);
System.out.println("Emploee Shift:" + " " + shift);
System.out.println("Emploee Number:" + " " + employeeNum);
System.out.println("Emploee HireDate:" + " " + hireDate);
System.out.println("Emploee PayRate:" + " " + payRate);
System.out.println("----------------------------------------");
}
}
Others with more experience maybe able to also provide some thought on my work as im still a newbie.
Bookmarks