package scheduler.Attributes;


import java.util.Collection;

/**
 *
 * 
        The InstructorStrength object gives an integer value that represents
 * how
	good the generated schedule fits the given instructor's preferences.
     * 
 * @author 
 * @version 
 *
 **/

public class InstructorStrength {

     /** Default Constructor **/
     public InstructorStrength() {

     }

     protected String name;

     protected int value;

     protected Collection<Courses> object;

     protected Collection<Pattern> object;

     protected Collection<Proximal> object;

     protected Collection<Time> object;

}