Salome HOME
Copyrights update 2015.
[tools/siman.git] / Workspace / Siman-Common / src / org / splat / dal / dao / som / StepCommentAttributeDAOImpl.java
1 /*****************************************************************************
2  * Company         EURIWARE
3  * Application     SIMAN
4  * File            $Id$ 
5  * Creation date   13.02.2013
6  * @author         Author: Maria KRUCHININA
7  * @version        Revision: 
8  *****************************************************************************/
9
10 package org.splat.dal.dao.som; 
11
12 import org.splat.dal.bo.som.StepCommentAttribute;
13 import org.splat.dal.dao.kernel.AbstractGenericDAOImpl;
14
15 /**
16  * StepCommentAttribute DAO.
17  * @author Maria KRUCHININA
18  *
19  */
20 public class StepCommentAttributeDAOImpl extends
21                 AbstractGenericDAOImpl<StepCommentAttribute, Long> implements StepCommentAttributeDAO {
22
23         /** 
24          * {@inheritDoc}
25          * @see org.splat.dal.dao.kernel.AbstractGenericDAOImpl#getType()
26          */
27         @Override
28         protected Class<StepCommentAttribute> getType() {
29                 return StepCommentAttribute.class;
30         }
31
32 }