AutorÃa | Ultima modificación | Ver Log |
package com.cesams.twogetskills.room;
public class ResultTotalFloat {
public float total;
public ResultTotalFloat(float total)
{
this.total = total;
}
public float getTotal() {
return total;
}
public void setTotal(float total) {
this.total = total;
}
}