Skip to content

Instantly share code, notes, and snippets.

@wisnukurniawan
Created January 13, 2017 07:16
Show Gist options
  • Save wisnukurniawan/203995a675b7ed44580c60817552389e to your computer and use it in GitHub Desktop.
Save wisnukurniawan/203995a675b7ed44580c60817552389e to your computer and use it in GitHub Desktop.
Builder Pattern Tutorial
public static void main(String[] args) {
Rumah rumah1 = new RumahBuilder("KM","RT", "TD")
.setGarasi("GR").setKolamRenang("KR").build();
Rumah rumah2 = new RumahBuilder("KM","RT", "TD")
.setGarasi("GR").build();
Rumah rumah3 = new RumahBuilder("KM","RT", "TD")
.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment