import jora.*; import java.math.*; import java.sql.*; public class Manager extends Employee { public int projectId; public Experience experience; public String toString() { String s = super.toString() + '\t' + projectId; for (Experience exp=experience; exp != null; exp = exp.next) { s += '\t' + exp.text; } return s; } public static Table table = new Table("Manager"); }