Skip to content

Instantly share code, notes, and snippets.

@axm
Created October 28, 2013 21:13
Show Gist options
  • Select an option

  • Save axm/7204822 to your computer and use it in GitHub Desktop.

Select an option

Save axm/7204822 to your computer and use it in GitHub Desktop.
Method chaining in Java
Student student = new Student()
.setId("1236001SJM")
.setName("Samuel J. Morisson")
.setAge(21)
.setDegree("BEng Computer Science");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment