Proyectos de Subversion Android Microlearning

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
27 efrain 1
package com.cesams.twogetskills.viewdata;
2
 
3
public class SlideRefreshUIViewData {
4
    private boolean imagenViewerControl = false;
5
    private boolean resumenVisores = false;
6
    private boolean cambioSlide = false;
7
    private boolean nextFromButton = false;
8
 
34 gabriel 9
    private String capsuleActiveUuid;
10
    private String capsuleNameActive;
11
 
12
    public String getCapsuleUuidActiveViewData() { return capsuleActiveUuid;}
13
 
14
    public void setCapsuleUuidActiveViewData(String capsuleActiveUuid){
15
        this.capsuleActiveUuid = capsuleActiveUuid;
16
    }
17
 
18
    public String getCapsuleNameActiveViewData() { return capsuleNameActive;}
19
 
20
    public void setCapsuleNameActiveViewData(String capsuleNameActive){
21
        this.capsuleNameActive = capsuleNameActive;
22
    }
23
 
24
 
27 efrain 25
    public boolean isImagenViewerControl() {
26
        return imagenViewerControl;
27
    }
28
 
29
    public void setImagenViewerControl(boolean imagenViewerControl) {
30
        this.imagenViewerControl = imagenViewerControl;
31
    }
32
 
33
    public boolean isResumenVisores() {
34
        return resumenVisores;
35
    }
36
 
37
    public void setResumenVisores(boolean resumenVisores) {
38
        this.resumenVisores = resumenVisores;
39
    }
40
 
41
    public boolean isCambioSlide() {
42
        return cambioSlide;
43
    }
44
 
45
    public void setCambioSlide(boolean cambioSlide) {
46
        this.cambioSlide = cambioSlide;
47
    }
48
 
49
    public boolean isNextFromButton() {
50
        return nextFromButton;
51
    }
52
 
53
    public void setNextFromButton(boolean nextFromButton) {
54
        this.nextFromButton = nextFromButton;
55
    }
56
 
57
 
58
 
59
 
60
}