1
Simplifying what I mean, suppose I have a Mother class:
public class Mãe {
    private String nome;   // Declarando o campo privado nome
    public Mãe(String _nome) {
        nome = _nome;   // Definindo o campo nome 
    }
}
Now, the daughter class:
public class Filha extends Mãe {   // Extendendo da classe Mãe
    public Filha(String _nome) {
        super(_nome);   // Chamando o construtor da classe Mãe
    }
}
Therefore, in the class builder Filha I called the class builder Mãe, right? Then how would I, in class Filha, to access the field nome, class Mãe? I should put this field as an audience?
I understand. Thank you very much for your reply!
– Akinhiê Urukin