package scheduler.Attributes; import java.util.Collection; /** * * The Time object gives an integer value that represents how good the generated schedule fits the an instructor's Time preferences. * * @author * @version * **/ public class Time { /** Default Constructor **/ public Time() { } protected int timeV; protected int value; }