Skip to content

Instantly share code, notes, and snippets.

@egealpay
Created February 27, 2019 10:21
Show Gist options
  • Save egealpay/ead19ada47ec3b9d6bf2f122c09902df to your computer and use it in GitHub Desktop.
Save egealpay/ead19ada47ec3b9d6bf2f122c09902df to your computer and use it in GitHub Desktop.
public class Person {
private House house;
public getHouse() {
return house;
}
}
public class House {
private Address address;
public getAddress() {
return adress;
}
}
public class Address {
private String zipCode;
public getZipCode() {
return zipCode;
}
}
public static void main(String[] args) {
...
...
String zipCode = person.getHouse().getAddress().getZipCode();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment