(String sigla,String nome, Regiao regiao)
| 8 | private Regiao regiao; |
| 9 | |
| 10 | private Estado(String sigla,String nome, Regiao regiao){ |
| 11 | this.sigla=sigla; |
| 12 | this.nome = nome; |
| 13 | this.regiao = regiao; |
| 14 | } |
| 15 | public String getNome() { |
| 16 | return nome; |
| 17 | } |
nothing calls this directly
no outgoing calls
no test coverage detected