package scheduler.Attributes; import java.util.Collection; /** * * The ScheduleStrength is a measure of how good the schedule fulfills all the desired preferences. * * @author * @version * **/ public class ScheduleStrength { /** Default Constructor **/ public ScheduleStrength() { } protected int sst; protected Collection ssis; protected Conflicts ssc; }