Skip to content

Instantly share code, notes, and snippets.

@mateusmaso
Created February 18, 2013 00:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mateusmaso/4974373 to your computer and use it in GitHub Desktop.
Save mateusmaso/4974373 to your computer and use it in GitHub Desktop.
package simbolos;
public class Simbolo {
private String nome;
public Simbolo() {
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment