Created
November 25, 2008 14:00
-
-
Save riferrei/28919 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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