Proyectos de Subversion Android Microlearning

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
package com.cesams.twogetskills.viewdata;
2
 
3
public class ProgressViewData {
4
 
5
    private int capsuleTotal = 0;
6
    private int capsuleStarted = 0;
7
    private int capsuleForStart = 0;
8
    private int capsuleCompleted = 0;
9
 
10
 
11
    private int capsuleWithReturning = 0;
12
    private int capsuleWithoutReturning = 0 ;
13
 
14
    private float percentCompleted = 0;
15
    private float percentIncompleted = 100;
16
 
17
    public int getCapsuleTotal() {
18
        return capsuleTotal;
19
    }
20
 
21
    public void setCapsuleTotal(int capsuleTotal) {
22
        this.capsuleTotal = capsuleTotal;
23
    }
24
 
25
    public int getCapsuleStarted() {
26
        return capsuleStarted;
27
    }
28
 
29
    public void setCapsuleStarted(int capsuleStarted) {
30
        this.capsuleStarted = capsuleStarted;
31
    }
32
 
33
    public int getCapsuleForStart() {
34
        return capsuleForStart;
35
    }
36
 
37
    public void setCapsuleForStart(int capsuleForStart) {
38
        this.capsuleForStart = capsuleForStart;
39
    }
40
 
41
    public int getCapsuleCompleted() {
42
        return capsuleCompleted;
43
    }
44
 
45
    public void setCapsuleCompleted(int capsuleCompleted) {
46
        this.capsuleCompleted = capsuleCompleted;
47
    }
48
 
49
    public int getCapsuleWithReturning() {
50
        return capsuleWithReturning;
51
    }
52
 
53
    public void setCapsuleWithReturning(int capsuleWithReturning) {
54
        this.capsuleWithReturning = capsuleWithReturning;
55
    }
56
 
57
    public int getCapsuleWithoutReturning() {
58
        return capsuleWithoutReturning;
59
    }
60
 
61
    public void setCapsuleWithoutReturning(int capsuleWithoutReturning) {
62
        this.capsuleWithoutReturning = capsuleWithoutReturning;
63
    }
64
 
65
    public float getPercentCompleted() {
66
        return percentCompleted;
67
    }
68
 
69
    public void setPercentCompleted(float percentCompleted) {
70
        this.percentCompleted = percentCompleted;
71
    }
72
 
73
    public float getPercentIncompleted() {
74
        return percentIncompleted;
75
    }
76
 
77
    public void setPercentIncompleted(float percentIncompleted) {
78
        this.percentIncompleted = percentIncompleted;
79
    }
80
}