Skip to content

Instantly share code, notes, and snippets.

@CarlosHenriqueDv
Created February 9, 2023 00:09
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/ba0c5d839b1fcb1393fd7b34fbc82f81 to your computer and use it in GitHub Desktop.
Save CarlosHenriqueDv/ba0c5d839b1fcb1393fd7b34fbc82f81 to your computer and use it in GitHub Desktop.
fabrica de produtos concretos linux
public class LinuxGuiFactory implements GuiFactory {
@Override
public Painel criaPainel() {
return new LinuxPainel(true);
}
@Override
public Botao criaBotao() {
return new BotaoLinux();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment