ajout de commentaires dans les interfaces et correction des test

This commit is contained in:
trochas
2024-10-24 10:03:08 +02:00
parent 467b20f0b6
commit 8770ec3165
5 changed files with 88 additions and 7 deletions

View File

@@ -1,7 +1,14 @@
package src.fr.api;
import java.util.Set;
public interface Configuration {
/*
* @return true if there is no compatibility issue between PartType else false
*/
boolean isValid();
boolean isComplete();
Set<PartType> getSelectedParts();
void selectPart(PartType chosenPart);