Salome HOME
Modifications done to respect PMD rules.
[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 #if(${DAOPackage} != "org.splat.dal.dao.kernel")
15 import org.splat.dal.dao.kernel.GenericDAO;
16 #end
17
18 /**
19  * ${EntityClass} DAO class implementation.
20  * @author <a href="mailto:roman.kozlov@opencascade.com">Roman Kozlov (RKV)</a>
21  *
22  */
23 public interface ${EntityClass}DAO extends GenericDAO<${EntityClass}, Long> {
24 }