Package br.com.boardnaveia.dao.impl

Source Code of br.com.boardnaveia.dao.impl.NoticiaDAOImpl

package br.com.boardnaveia.dao.impl;



import javax.jdo.Query;

import br.com.boardnaveia.dao.INoticiaDAO;
import br.com.boardnaveia.dao.bean.Noticia;
import br.com.zeroutrocou.dao.jdo.BaseDAO;

class NoticiaDAOImpl extends BaseDAO<Noticia> implements INoticiaDAO{

  @Override
  public Noticia pesquisarIndice(Integer indice) {
   
    Query query = getPersistenceManager().newQuery(Noticia.class);
   
    query.setRange(indice, indice+1);
   
    query.setUnique(true);
   
    return (Noticia) query.execute();
  }

}
TOP

Related Classes of br.com.boardnaveia.dao.impl.NoticiaDAOImpl

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.