Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active April 11, 2021 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcsee/8f89b53d0be21a6779e4be53673edf5c to your computer and use it in GitHub Desktop.
Save mcsee/8f89b53d0be21a6779e4be53673edf5c to your computer and use it in GitHub Desktop.
public class Client {
Address address;
public ZipCode zipCode() {
return address.zipCode();
}
}
public class Address {
private ZipCode zipCode;
public ZipCode zipCode() {
return new ZipCode('CA90210');
}
}
public class Application {
ZipCode zipCode = client.zipCode();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment