Created
October 21, 2015 21:49
-
-
Save abacha/105085fa3ed5c7f630c3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface Impressora { | |
| void imprimir(); | |
| void imprimirPB(); | |
| } | |
| class ImpressoraPDF implements Impressora { } | |
| class ImpressoraHTML implements Impressora { } | |
| class Sistema { | |
| void imprimir(Impressora impressora) { | |
| impressora.imprimir(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment