Subversion Repositories bacoAlunos

Rev

Rev 1331 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1330 jmachado 1
package pt.estgp.estgweb.domain;
2
// Generated 23/Mar/2016 22:34:58 by Hibernate Tools 3.2.0.b9
3
 
4
 
5
 
6
/**
7
 * QuestionarioResposta generated by hbm2java
8
 */
9
public abstract class QuestionarioResposta extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
10
 
11
 
12
     private long id;
13
     private User user;
14
 
15
    public QuestionarioResposta() {
16
    }
17
 
18
 
19
    public long getId() {
20
        return this.id;
21
    }
22
 
23
    public void setId(long id) {
24
        this.id = id;
25
    }
26
    public User getUser() {
27
        return this.user;
28
    }
29
 
30
    public void setUser(User user) {
31
        this.user = user;
32
    }
33
 
34
 
35
 
36
 
37
}
38
 
39