Examples of addArvore()


Examples of business.Projeto.addArvore()

        p.setNome(JOptionPane.showInputDialog(null, "Entre com o nome do projeto"));
        p.setId(dao.getNewId());
        Arvore a = new Arvore(1);
        a.put("DAP", 18.0);
        a.put("H", 19.0);
        p.addArvore(a);
        dao.save(p);
        dao.close();
    }

  //  @Ignore
View Full Code Here

Examples of business.Projeto.addArvore()

        dao.connect();
        Projeto projeto = dao.find(1);
        Arvore arvore = new Arvore(2);
        arvore.put("DAP", 21.0);
        arvore.put("H", 26.0);
        projeto.addArvore(arvore);
        dao.update(projeto, false, projeto.getId());
        dao.close();
        assertNotNull("Nulo", projeto);
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.