Skip to content

Instantly share code, notes, and snippets.

@CarlosHenriqueDv
Created February 9, 2023 00:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CarlosHenriqueDv/ce482fd6181b9307deea6b767a62b9b5 to your computer and use it in GitHub Desktop.
Save CarlosHenriqueDv/ce482fd6181b9307deea6b767a62b9b5 to your computer and use it in GitHub Desktop.
fábrica concreta windows
public class WindowsGuiFactory implements GuiFactory {
@Override
public Painel criaPainel() {
return new PainelWindows(true);
}
@Override
public Botao criaBotao() {
return new BotaoWindows();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment