Salome HOME
Refactoring of Database, replacing SQL by DAOs calls. Methods for search by criteria...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / kernel / TextAttributeDAOImpl.java
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 Tue Oct 16 14:37:09 MSD 2012
9  *****************************************************************************/
10
11 package org.splat.dal.dao.kernel;
12
13 import org.splat.dal.bo.kernel.TextAttribute;
14 import org.splat.dal.dao.kernel.GenericDAOImpl;
15
16 /**
17  * TextAttribute DAO.
18  * @author RKV
19  * 
20  */
21 public class TextAttributeDAOImpl extends
22                 GenericDAOImpl<TextAttribute, Long> implements TextAttributeDAO {
23
24         /** 
25          * {@inheritDoc}
26          * @see org.splat.dal.dao.kernel.GenericDAOImpl#getType()
27          */
28         @Override
29         protected Class<TextAttribute> getType() {
30                 return TextAttribute.class;
31         }
32
33 }