Skip to content

Instantly share code, notes, and snippets.

@riferrei
Created November 25, 2008 14:00
Show Gist options
  • Save riferrei/28919 to your computer and use it in GitHub Desktop.
Save riferrei/28919 to your computer and use it in GitHub Desktop.
package xxx.yyy.zzz;
import java.io.Serializable;
@SuppressWarnings("serial")
public class ResultadoMultiplicacao implements Serializable {
private int valor;
public int getValor() {
return valor;
}
public void setValor(int valor) {
this.valor = valor;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment