]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/DaoGenerator/src/templates/DAO.java.vm
Salome HOME
Company in the file header is changed from EURIWARE to OPEN CASCADE.
[tools/siman.git] / Workspace / DaoGenerator / src / templates / DAO.java.vm
1 /*****************************************************************************
2  * Company         OPEN CASCADE
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 }