Skip to content

Instantly share code, notes, and snippets.

@kodamirmo
Created June 16, 2013 03:45
Show Gist options
  • Save kodamirmo/5790681 to your computer and use it in GitHub Desktop.
Save kodamirmo/5790681 to your computer and use it in GitHub Desktop.
public class Constantes {
private static String algunaCadena;
public static String getAlgunaCadena() {
return algunaCadena;
}
public static void setAlgunaCadena(String algunaCadena) {
Constantes.algunaCadena = algunaCadena;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment