Created
October 5, 2019 00:29
-
-
Save omeuerodrigofreitas/4a8c50011957aec03cd6cc13276ca868 to your computer and use it in GitHub Desktop.
Destinado aos alunos de poo do 3sem
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
//como criar atributo | |
private List<Endereco> enderecos = new ArrayList<>(); | |
// metodo criado para adicionar enderecos | |
public void addEndereco(Endereco endereco) { | |
enderecos.add(endereco); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment