Proyectos de Subversion Android Microlearning

Rev

Autoría | Ultima modificación | Ver Log |

package com.cesams.twogetskills.viewdata;

public class ProgressViewData {

    private int capsuleTotal = 0;
    private int capsuleStarted = 0;
    private int capsuleForStart = 0;
    private int capsuleCompleted = 0;


    private int capsuleWithReturning = 0;
    private int capsuleWithoutReturning = 0 ;

    private float percentCompleted = 0;
    private float percentIncompleted = 100;

    public int getCapsuleTotal() {
        return capsuleTotal;
    }

    public void setCapsuleTotal(int capsuleTotal) {
        this.capsuleTotal = capsuleTotal;
    }

    public int getCapsuleStarted() {
        return capsuleStarted;
    }

    public void setCapsuleStarted(int capsuleStarted) {
        this.capsuleStarted = capsuleStarted;
    }

    public int getCapsuleForStart() {
        return capsuleForStart;
    }

    public void setCapsuleForStart(int capsuleForStart) {
        this.capsuleForStart = capsuleForStart;
    }

    public int getCapsuleCompleted() {
        return capsuleCompleted;
    }

    public void setCapsuleCompleted(int capsuleCompleted) {
        this.capsuleCompleted = capsuleCompleted;
    }

    public int getCapsuleWithReturning() {
        return capsuleWithReturning;
    }

    public void setCapsuleWithReturning(int capsuleWithReturning) {
        this.capsuleWithReturning = capsuleWithReturning;
    }

    public int getCapsuleWithoutReturning() {
        return capsuleWithoutReturning;
    }

    public void setCapsuleWithoutReturning(int capsuleWithoutReturning) {
        this.capsuleWithoutReturning = capsuleWithoutReturning;
    }

    public float getPercentCompleted() {
        return percentCompleted;
    }

    public void setPercentCompleted(float percentCompleted) {
        this.percentCompleted = percentCompleted;
    }

    public float getPercentIncompleted() {
        return percentIncompleted;
    }

    public void setPercentIncompleted(float percentIncompleted) {
        this.percentIncompleted = percentIncompleted;
    }
}