/** * Copyright © 2002 Instituto Superior Técnico * * This file is part of FenixEdu Academic. * * FenixEdu Academic is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * FenixEdu Academic is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with FenixEdu Academic. If not, see <http://www.gnu.org/licenses/>. */ package org.fenixedu.academic.dto; import java.util.Calendar; import java.util.Comparator; import org.fenixedu.academic.domain.Evaluation; import org.fenixedu.academic.domain.ShiftType; import org.fenixedu.academic.util.DiaSemana; import org.fenixedu.academic.util.EvaluationType; /** * @author Ângela * * 25/6/2003 */ public class InfoEvaluation extends InfoShowOccupation { public static final Comparator<InfoEvaluation> COMPARATOR_BY_START = new Comparator<InfoEvaluation>() { @Override public int compare(InfoEvaluation o1, InfoEvaluation o2) { return o1.getInicio().compareTo(o2.getInicio()); } }; private String publishmentMessage; private EvaluationType evaluationType; public InfoEvaluation() { setPublishmentMessage(null); setEvaluationType(null); } public InfoEvaluation(String publishmentMessage, EvaluationType type) { this(); setPublishmentMessage(publishmentMessage); setEvaluationType(type); } @Override public boolean equals(Object obj) { boolean resultado = false; if (obj instanceof InfoEvaluation) { InfoEvaluation infoEvaluation = (InfoEvaluation) obj; resultado = this.getPublishmentMessage().equals(infoEvaluation.getPublishmentMessage()) && this.getEvaluationType() == infoEvaluation.getEvaluationType(); } return resultado; } @Override public String toString() { String result = "[" + this.getClass().getName() + ": "; result += "publishmentMessage = " + this.publishmentMessage + "; "; result += "type = " + this.evaluationType + "]"; return result; } /** * @return */ public String getPublishmentMessage() { return publishmentMessage; } /** * @param string */ public void setPublishmentMessage(String string) { this.publishmentMessage = string; } /** * @return */ public EvaluationType getEvaluationType() { return evaluationType; } /** * @param type */ public void setEvaluationType(EvaluationType type) { evaluationType = type; } // Methods inherited from abstract InfoShowOccupations - not used @Override public InfoShift getInfoShift() { return null; } @Override public ShiftType getTipo() { return null; } @Override public InfoRoomOccupation getInfoRoomOccupation() { return null; } @Override public DiaSemana getDiaSemana() { return null; } @Override public Calendar getInicio() { return null; } @Override public Calendar getFim() { return null; } public void copyFromDomain(Evaluation evaluation) { super.copyFromDomain(evaluation); if (evaluation != null) { setPublishmentMessage(evaluation.getPublishmentMessage()); } } /** * @param evaluation * @return */ public static InfoEvaluation newInfoFromDomain(Evaluation evaluation) { if (evaluation != null) { return evaluation.newInfoFromDomain(); } return null; } }