Java Getters and Setters
//Numeric Data: //Getter public double getTotal() { return total; } //Setter public void setTotal(double total) { this.total = total; }