]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/DaoGenerator/src/templates/DAO.java.vm
Salome HOME
4092a32ba99fe893e4067cd0d227ba5add20176c
[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  * Generated by Siman Generator on $date
9  *****************************************************************************/
10
11 package ${DAOPackage}; 
12
13 import ${EntityPackage}.${EntityClass};
14 import org.splat.dal.dao.kernel.GenericDAO;
15
16 /**
17  * ${EntityClass} DAO class implementation.
18  * @author <a href="mailto:roman.kozlov@opencascade.com">Roman Kozlov (RKV)</a>
19  *
20  */
21 public interface ${EntityClass}DAO extends GenericDAO<${EntityClass}, Long> {
22 }