Skip to content

Instantly share code, notes, and snippets.

@fernandolopes
Created October 17, 2018 21:33
Show Gist options
  • Select an option

  • Save fernandolopes/7748f81e742685c9f80590cb55046832 to your computer and use it in GitHub Desktop.

Select an option

Save fernandolopes/7748f81e742685c9f80590cb55046832 to your computer and use it in GitHub Desktop.
Model Valor
package com.example.fernando.myapplication.models;
/**
* Created by Fernando on 16/10/2018.
*/
public class Valor {
private float Valor;
private boolean IsChecked;
public float getValor() {
return Valor;
}
public void setValor(float valor) {
Valor = valor;
}
public boolean isChecked() {
return IsChecked;
}
public void setChecked(boolean checked) {
IsChecked = checked;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment