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.pojo;
2
 
3
public class AnswerRange {
4
 
5
    private int value;
6
    private String text;
7
 
8
    public int getValue() {
9
        return value;
10
    }
11
 
12
    public void setValue(int value) {
13
        this.value = value;
14
    }
15
 
16
    public String getText() {
17
        return text;
18
    }
19
 
20
    public void setText(String text) {
21
        this.text = text;
22
    }
23
 
24
    public AnswerRange(int value, String text) {
25
        this.value = value;
26
        this.text = text;
27
    }
28
 
29
    public AnswerRange() {
30
        this.value = 0;
31
        this.text = "";
32
    }
33
}