Skip to content

Commit 3ab2892

Browse files
committed
🔨 Validation test EmploiDuTemps
1 parent 7b0a960 commit 3ab2892

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/main/java/fr/umontp/edt/EmploiDuTemps.java

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* @author emerick-biron
3636
* @author MathieuSoysal
37-
* @version 1.0.0
37+
* @version 1.2.0
3838
*/
3939
@Deprecated(forRemoval = false)
4040
public final class EmploiDuTemps implements InterfaceEmploiDuTemps {
@@ -192,4 +192,19 @@ public Planning getPlanningOf(Groupe... groupes) {
192192
public Planning getPlanningOf(Professeur... professeurs) {
193193
return planningEmploisDuTemps.getPlanningOf(professeurs);
194194
}
195+
196+
/**
197+
* Permet d'obtenir le planning correspondant au {@link PlanningFiltreur}
198+
*
199+
* @param planningFiltreur filtrant le planning
200+
* @return planning correspondant au filtre
201+
* @since 1.2.0
202+
*
203+
* @see PlanningFiltreur
204+
* @see Planning
205+
*/
206+
@Override
207+
public Planning getPlanningOf(PlanningFiltreur planningFiltreur) {
208+
return planningEmploisDuTemps.getPlanningOf(planningFiltreur);
209+
}
195210
}

0 commit comments

Comments
 (0)