Salome HOME
Modifications done to respect PMD rules. Versioning a document is fixed. Validation...
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / kernel / AttributeDAOImpl.java
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 Tue Nov 06 13:38:56 MSK 2012
9  *****************************************************************************/
10
11 package org.splat.dal.dao.kernel;
12
13 import org.splat.dal.bo.kernel.Attribute;
14
15 /**
16  * Attribute DAO.
17  * @author RKV
18  * 
19  */
20 public class AttributeDAOImpl extends
21                 AbstractGenericDAOImpl<Attribute, Long> implements AttributeDAO {
22
23         /** 
24          * {@inheritDoc}
25          * @see org.splat.dal.dao.kernel.AbstractGenericDAOImpl#getType()
26          */
27         @Override
28         protected Class<Attribute> getType() {
29                 return Attribute.class;
30         }
31
32 }