Skip to content

Instantly share code, notes, and snippets.

@rurtubia
Created April 26, 2015 04:09
Show Gist options
  • Select an option

  • Save rurtubia/e47b6f3112cebf243caa to your computer and use it in GitHub Desktop.

Select an option

Save rurtubia/e47b6f3112cebf243caa to your computer and use it in GitHub Desktop.
Java Getters and Setters
//Numeric Data:
//Getter
public double getTotal() {
return total;
}
//Setter
public void setTotal(double total) {
this.total = total;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment