Proyectos de Subversion Android Microlearning

Rev

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

package com.cesams.twogetskills.pojo;

public class AnswerRange {

    private int value;
    private String text;

    public int getValue() {
        return value;
    }

    public void setValue(int value) {
        this.value = value;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }

    public AnswerRange(int value, String text) {
        this.value = value;
        this.text = text;
    }

    public AnswerRange() {
        this.value = 0;
        this.text = "";
    }
}