reorginazise

This commit is contained in:
Minh VU
2024-10-18 17:11:29 +02:00
parent 51fd5e6e07
commit f97509496e
14 changed files with 0 additions and 4 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();
}