Subversion Repositories bacoAlunos

Rev

Rev 1782 | Rev 1791 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1782 Rev 1785
Line 1... Line 1...
1
package pt.estgp.estgweb.domain;
1
package pt.estgp.estgweb.domain;
2
// Generated 17/Jun/2017 17:19:42 by Hibernate Tools 3.2.0.b9
2
// Generated 20/Jun/2017 16:24:02 by Hibernate Tools 3.2.0.b9
3
 
3
 
4
 
4
 
-
 
5
import pt.estgp.estgweb.domain.bpmn.VariableType;
5
 
6
 
6
/**
7
/**
7
 * BpmnVariable generated by hbm2java
8
 * BpmnVariable generated by hbm2java
8
 */
9
 */
9
public abstract class BpmnVariable extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
10
public abstract class BpmnVariable extends pt.estgp.estgweb.domain.DomainObject implements java.io.1.5.0/docs/api/java/io/Serializable.html">Serializable {
10
 
11
 
11
 
12
 
12
     private long id;
13
     private long id;
13
     private 1.5.0/docs/api/java/lang/String.html">String name;
14
     private 1.5.0/docs/api/java/lang/String.html">String name;
14
     private 1.5.0/docs/api/java/lang/String.html">String type;
15
     private VariableType type;
15
 
16
 
16
    public BpmnVariable() {
17
    public BpmnVariable() {
17
    }
18
    }
18
 
19
 
19
   
20
   
Line 29... Line 30...
29
    }
30
    }
30
   
31
   
31
    public void setName(1.5.0/docs/api/java/lang/String.html">String name) {
32
    public void setName(1.5.0/docs/api/java/lang/String.html">String name) {
32
        this.name = name;
33
        this.name = name;
33
    }
34
    }
34
    public 1.5.0/docs/api/java/lang/String.html">String getType() {
35
    public VariableType getType() {
35
        return this.type;
36
        return this.type;
36
    }
37
    }
37
   
38
   
38
    public void setType(1.5.0/docs/api/java/lang/String.html">String type) {
39
    public void setType(VariableType type) {
39
        this.type = type;
40
        this.type = type;
40
    }
41
    }
41
 
42
 
42
 
43
 
43
 
44