Olá, sou programador iniciante e estou desenvolvendo um trabalho para faculdade, uma das frames é esta da imagem, onde através do cpf filtramos dividas, no entanto para apresentar em uma label o valor total dessas dividas estou com dificuldade, ja tentei utilizar a estrutura “for”.
public void acaoBuscarCpf() {
String sCpf = this.tCpf.getText();
try {
String cpf = sCpf;
Imposto i = this.getPdb().buscaPorCpf(cpf);
Pessoas p = this.getPdb2().buscaPorCpf(cpf);
if (i != null) {
List<Imposto> impostos = this.getPdb().buscaTodosCpf(cpf);
double s = p.getSalario();
double t = i.getTotal();
total.setText(Double.toString(t));
salario.setText(Double.toString(s));