/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package exemplorelatorio; /** * * @author 42071420684 */ public class Aluno { public Aluno(Long id, String nome, int idade) { this.id = id; this.nome = nome; this.idade = idade; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public int getIdade() { return idade; } public void setIdade(int idade) { this.idade = idade; } public String getNome() { return nome; } public void setNome(String nome) { this.nome = nome; } private Long id; private String nome; private int idade; }