/** * Remove a job from the jobList * * @param job the job to remove */ public void removeJob(Job job) { jobList.remove(job); job.setUser(null); }
/** * Add a job to the jobList * * @param job the job to add */ public void addJob(Job job) { jobList.add(job); job.setUser(this); }