Created
January 13, 2017 07:16
-
-
Save wisnukurniawan/203995a675b7ed44580c60817552389e to your computer and use it in GitHub Desktop.
Builder Pattern Tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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