Subversion Repositories bacoAlunos

Rev

Rev 1917 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1312 jmachado 1
package pt.estgp.estgweb.domain.dao.impl;
1926 grupo3 2
// Generated 1/jan/2018 17:03:16 by Hibernate Tools 3.2.0.b9
1312 jmachado 3
 
4
 
5
import org.apache.log4j.Logger;
6
 
7
/**
8
 * Home object for domain model class RecordThesis.
9
 * @author Jorge Machado - Hibernate Tools
10
 */
11
 
12
import jomm.dao.IDomainObjectDao;
13
import jomm.dao.impl.AbstractDao;
14
import pt.estgp.estgweb.domain.RecordThesis;
15
 
16
 
17
public class RecordThesisDao extends AbstractDao<RecordThesis> {
18
//public class RecordThesisDao extends AbstractDao implements IDomainObjectDao {
19
 
20
    private static final 1.5.0/docs/api/java/util/logging/Logger.html">Logger log = 1.5.0/docs/api/java/util/logging/Logger.html">Logger.getLogger(RecordThesisDao.class);
21
 
22
    protected static RecordThesisDao myInstance = null;
23
 
24
    protected RecordThesisDao(){
25
        super();
26
    }
27
 
28
    public static RecordThesisDao getInstance() {
29
        if (myInstance == null)
30
            myInstance = new RecordThesisDao();
31
        return myInstance;
32
    }
33
 
34
    protected 1.5.0/docs/api/java/lang/Class.html">Class getReferenceClass() {
35
        return RecordThesis.class;
36
    }
37
}
38
 
39