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