]> SALOME platform Git repositories - tools/siman.git/blob - Workspace/DaoGenerator/bin/templates/DAOImpl.java.vm
Salome HOME
42d44a83a64aa5b4c42d0b9df2c97438fb4d3708
[tools/siman.git] / Workspace / DaoGenerator / bin / templates / DAOImpl.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.GenericDAOImpl;
14
15 /**
16  * ${EntityClass} DAO.
17  * @author RKV
18  * 
19  */
20 public class ${EntityClass}DAOImpl extends
21                 GenericDAOImpl<${EntityClass}, Long> implements ${EntityClass}DAO {
22
23         /** 
24          * {@inheritDoc}
25          * @see org.splat.dal.dao.kernel.GenericDAOImpl#getType()
26          */
27         @Override
28         protected Class<${EntityClass}> getType() {
29                 return ${EntityClass}.class;
30         }
31
32 }