Skip to content

Instantly share code, notes, and snippets.

@4ndrew
Created April 16, 2009 07:09
Show Gist options
  • Save 4ndrew/96283 to your computer and use it in GitHub Desktop.
Save 4ndrew/96283 to your computer and use it in GitHub Desktop.
public class AWTUI implements UIPlug, XLetStateListener {
static AWTUI instance = null;
// ...
AWTUI(/* params */) {
// ...
}
public synchronized static AWTUI getInstance() {
if (instance == null) {
// ...
instance = new AWTUI(/* params */);
}
return instance;
}
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment