package mvd.jester.model; public class TreeJob { private long wcet; private final Job job; public TreeJob(Job job) { this.wcet = job.getWcet(); this.job = job; } /** * @return the job */ public Job getJob() { return job; } /** * @return the wcet */ public long getWcet() { return wcet; } /** * @param wcet the wcet to set */ public void setWcet(long wcet) { this.wcet = wcet; } }