Skip to content

Instantly share code, notes, and snippets.

@searls
Created October 23, 2010 18:26
Show Gist options
  • Save searls/642526 to your computer and use it in GitHub Desktop.
Save searls/642526 to your computer and use it in GitHub Desktop.
package searls.dougu.examples;
public class ShardsOGlassSalesman {
private BoxOfGlassPops boxOfGlassPops;
public void setBoxOfGlassPops(BoxOfGlassPops boxOfGlassPops) {
this.boxOfGlassPops = boxOfGlassPops;
}
private Wallet wallet;
public void setWallet(Wallet wallet) {
this.wallet = wallet;
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment