package net.sourceforge.fenixedu.dataTransferObject.credits; /** * @author Tânia Pousão * */ public class InfoCreditsWrapper extends InfoCredits { private InfoCredits infoCredits; public InfoCreditsWrapper(InfoCredits infoCredits) { this.infoCredits = infoCredits; } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getContainsManagementPositions() */ public Boolean getContainsManagementPositions() { return infoCredits.getContainsManagementPositions(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getContainsServiceExemptionsSituations() */ public Boolean getContainsServiceExemptionsSituations() { return infoCredits.getContainsServiceExemptionsSituations(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getDegreeFinalProjectStudents() */ public Double getDegreeFinalProjectStudents() { return infoCredits.getDegreeFinalProjectStudents(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getDegreeFinalProjectStudentsFormatted() */ public String getDegreeFinalProjectStudentsFormatted() { return infoCredits.getDegreeFinalProjectStudentsFormatted(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getInstitutionWorkTime() */ public Double getInstitutionWorkTime() { return infoCredits.getInstitutionWorkTime(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getInstitutionWorkTimeFormatted() */ public String getInstitutionWorkTimeFormatted() { return infoCredits.getInstitutionWorkTimeFormatted(); } /* * (non-Javadoc) * * @see * net.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits#getLessons * () */ public Double getLessons() { return infoCredits.getLessons(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getLessonsFormatted() */ public String getLessonsFormatted() { return infoCredits.getLessonsFormatted(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getMasterDegreeCredits() */ public Double getMasterDegreeCredits() { return infoCredits.getMasterDegreeCredits(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getMasterDegreeCreditsFormatted() */ public String getMasterDegreeCreditsFormatted() { return infoCredits.getMasterDegreeCreditsFormatted(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getOtherTypeCredits() */ public Double getOtherTypeCredits() { return infoCredits.getOtherTypeCredits(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getOtherTypeCreditsFormatted() */ public String getOtherTypeCreditsFormatted() { return infoCredits.getOtherTypeCreditsFormatted(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getSupportLessons() */ public Double getSupportLessons() { return infoCredits.getSupportLessons(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * getSupportLessonsFormatted() */ public String getSupportLessonsFormatted() { return infoCredits.getSupportLessonsFormatted(); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * setContainsManagementPositions(java.lang.Boolean) */ public void setContainsManagementPositions(Boolean containsManagementPositions) { infoCredits.setContainsManagementPositions(containsManagementPositions); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * setContainsServiceExemptionsSituations(java.lang.Boolean) */ public void setContainsServiceExemptionsSituations(Boolean containsServiceExemptionsSituations) { infoCredits.setContainsServiceExemptionsSituations(containsServiceExemptionsSituations); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * setDegreeFinalProjectStudents(java.lang.Double) */ public void setDegreeFinalProjectStudents(Double degreeFinalProjectStudents) { infoCredits.setDegreeFinalProjectStudents(degreeFinalProjectStudents); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * setInstitutionWorkTime(java.lang.Double) */ public void setInstitutionWorkTime(Double institutionWorkTime) { infoCredits.setInstitutionWorkTime(institutionWorkTime); } /* * (non-Javadoc) * * @see * net.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits#setLessons * (java.lang.Double) */ public void setLessons(Double lessons) { infoCredits.setLessons(lessons); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * setMasterDegreeCredits(java.lang.Double) */ public void setMasterDegreeCredits(Double masterDegreeCredits) { infoCredits.setMasterDegreeCredits(masterDegreeCredits); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * setOtherTypeCredits(java.lang.Double) */ public void setOtherTypeCredits(Double otherTypeCredits) { infoCredits.setOtherTypeCredits(otherTypeCredits); } /* * (non-Javadoc) * * @seenet.sourceforge.fenixedu.dataTransferObject.credits.InfoCredits# * setSupportLessons(java.lang.Double) */ public void setSupportLessons(Double supportLessons) { infoCredits.setSupportLessons(supportLessons); } }