Implement developer classes and criteria for product filtering

This commit is contained in:
ItsTheSky
2025-12-01 09:39:29 +01:00
parent e580d6995d
commit 17d960fd3b
27 changed files with 219 additions and 383 deletions

View File

@ -0,0 +1,7 @@
package net.itsthesky.projetbut2.ocp;
public interface Criteria<Product> {
boolean isSatisfied(Product product);
}