package scheduler.Attributes; import java.util.Collection; /** * * The Conflicts object contains information to determine if the * generated schedule has conflicts and a description of the conflict if it does. * * @author * @version * **/ public class Conflicts { /** Default Constructor **/ public Conflicts() { } protected String conflict; protected boolean conBoolean_; }