Salome HOME
59e05a8ed766e8ace754f5c375cc400db7829097
[tools/siman.git] / Workspace / DaoGenerator / src / templates / DAO.java.vm
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   06.10.2012
6  * @author         $Author$
7  * @version        $Revision$
8  *****************************************************************************/
9
10 package ${DAOPackage}; 
11
12 import ${EntityPackage}.${EntityClass};
13 import org.splat.dal.dao.kernel.GenericDAO;
14
15 /**
16  * ${EntityClass} DAO class implementation.
17  * @author <a href="mailto:roman.kozlov@opencascade.com">Roman Kozlov (RKV)</a>
18  *
19  */
20 public interface ${EntityClass}DAO extends GenericDAO<${EntityClass}, Long> {
21 }