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,9 @@
package net.itsthesky.projetbut2.dip;
public class FrontEndDeveloper implements Developer{
@Override
public void develop() {
IO.println("I write Javascript code !");
}
}