Skip to content

Instantly share code, notes, and snippets.

@raulmontemayor
Created September 12, 2012 21:40
Show Gist options
  • Save raulmontemayor/3710137 to your computer and use it in GitHub Desktop.
Save raulmontemayor/3710137 to your computer and use it in GitHub Desktop.
public class Contacto {
private static Contacto contacto;
private Contacto(Resources resource){
}
public Contacto getIntance(Resources res){
if(contacto == null){
contacto = new Contacto(resources);
}
return contacto;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment