Examples of LinhaPesquisa


Examples of in980.rgms.domain.LinhaPesquisa

    p.setTitulo("Titulo Teste 1");
    p.setAno(2009);
    p.setFilePath("/home/leofernandesmo/woorkspace/teste.jpg");
    s.save(ar);
   
    LinhaPesquisa lp = new LinhaPesquisa();
    lp.setTitulo("Linah Teste 1");
    lp.setDescricao("Descricao teste 1");
    List<Membro> membros1 = new ArrayList<Membro>();
    membros1.add(m);
    lp.setMembros(membros1);
    List<Publicacao> publicacoes = new ArrayList<Publicacao>();
    publicacoes.add(p);   
    lp.setPublicacoes(publicacoes);
    s.save(lp);
   
    s.getTransaction().commit();
    HibernateUtils.getSessionFactory().close();
   
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.