Created
October 17, 2018 21:33
-
-
Save fernandolopes/7748f81e742685c9f80590cb55046832 to your computer and use it in GitHub Desktop.
Model Valor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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