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