MartinBot

HistogramBin.java

Nov 13th, 2016
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package com.bustabit;
  2.  
  3. public class HistogramBin {
  4. private double cashout;
  5. private double value;
  6. private double cumulative;
  7. public double getCashout() {
  8. return cashout;
  9. }
  10. public void setCashout(double cashout) {
  11. this.cashout = cashout;
  12. }
  13. public double getValue() {
  14. return value;
  15. }
  16. public void setValue(double value) {
  17. this.value = value;
  18. }
  19. public double getCumulative() {
  20. return cumulative;
  21. }
  22. public void setCumulative(double cumulative) {
  23. this.cumulative = cumulative;
  24. }
  25. }
Advertisement
Add Comment
Please, Sign In to add comment