public Element exportarAlunoXML(){
int i;
Element alunoXML = new Element("aluno");
Element alunoNome = new Element("nome");
alunoNome.setText(nome);
alunoXML.addContent(alunoNome);
Element alunoDataNascimento = new Element("dataNascimento");
alunoDataNascimento.setText(dataNascimento);
alunoXML.addContent(alunoDataNascimento);
if((nomeMae != null) && (!nomeMae.isEmpty())
&& (nomeMae.length() != 0)){
Element alunoNomeMae = new Element("nomeMae");
alunoNomeMae.setText(nomeMae);
alunoXML.addContent(alunoNomeMae);
}
if((nomePai != null) && (!nomePai.isEmpty())
&& (nomePai.length() != 0)){
Element alunoNomePai = new Element("nomePai");
alunoNomePai.setText(nomePai);
alunoXML.addContent(alunoNomePai);
}
if((endereco != null) && (!endereco.isEmpty()) &&
(endereco.length() != 0)){
Element alunoEndereco = new Element("endereco");
alunoEndereco.setText(endereco);
alunoXML.addContent(alunoEndereco);
}
if((registroGeral != null) && (!registroGeral.isEmpty()) &&
(registroGeral.length() != 0)){
Element alunoRegistroGeral = new Element("registroGeral");
alunoRegistroGeral.setText(registroGeral);
alunoXML.addContent(alunoRegistroGeral);
}
if((cadPessoaFisica != null) && (!cadPessoaFisica.isEmpty()) &&
(nomeMae.length() != 0)){
Element alunoCadPessoaFisica = new Element("cadPessoaFisica");
alunoCadPessoaFisica.setText(cadPessoaFisica);
alunoXML.addContent(alunoCadPessoaFisica);
}
Element alunoGenero = new Element("genero");
alunoGenero.setText(genero);
alunoXML.addContent(alunoGenero);
if((testAptSaude.size() == testAptEsp.size()) &&
(testAptEsp.size() == medida.size())){
for(i=0;i<medida.size();i++){
Element testeXML = new Element("teste");
Element testeNome = new Element("nome");
testeNome.setText(medida.get(i).getNome());
testeXML.addContent(testeNome);
Element testeData = new Element("data");
testeData.setText(medida.get(i).getData());
testeXML.addContent(testeData);
Element testeAptSaudeXML;
testeAptSaudeXML = testAptSaude.get(i).exportarTesteAptidaoSaudeXML();
testeXML.addContent(testeAptSaudeXML);
Element testeAptEsportivoXML;
testeAptEsportivoXML = testAptEsp.get(i).exportarTesteAptidaoEsportivaXML();
testeXML.addContent(testeAptEsportivoXML);
Element testeMedidaCrescXML;
testeMedidaCrescXML = medida.get(i).exportarMedidaCrescimentoXML();
testeXML.addContent(testeMedidaCrescXML);
alunoXML.addContent(testeXML);
}