package scheduler.Attributes; import java.util.Collection; /** * * The Attributes object is comprised of the schedule strength (a * measure of how good the schedule fulfills the desired preferences): ScheduleStrength. * * @author * @version * **/ public class Attributes { /** Default Constructor **/ public Attributes() { } protected ScheduleStrength sstr; }