Skip to content

Instantly share code, notes, and snippets.

@ifucolo
Created February 3, 2017 16:47
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 ifucolo/3399b81e62900809d5d74f48c90cf0d8 to your computer and use it in GitHub Desktop.
Save ifucolo/3399b81e62900809d5d74f48c90cf0d8 to your computer and use it in GitHub Desktop.
class Program {
public void work() {
// ....code
}
}
class Engineer{
Program program;
public void setProgram(Program p) {
program = p;
}
public void manage() {
program.work();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment