Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public interface ControleRemoto
  2. {
  3.    public void ligaTV();
  4.    public void desligaTV();
  5.    public void mudaCanalTV(int canalNovo);
  6. }
  7.  
  8. public class TV implements ControleRemoto
  9. {
  10.    public void ligaTV() {...}
  11.    public void desligaTV() {...}
  12.    public void mudaCanalTV(int canalNovo) {...}
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement