ajour de l'api v1

This commit is contained in:
trochas
2024-10-10 10:35:43 +02:00
parent 7cd8e75c80
commit 01ff7abe04
7 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
package fr.istic.nplouzeau.cartaylor.api;
import java.util.Set;
public interface Configuration {
boolean isValid();
boolean isComplete();
Set<PartType> getSelectedParts();
void selectPart(PartType chosenPart);
PartType getSelectionForCategory(Category category);
void unselectPartType(Category categoryToClear);
void clear();
}