Created
November 25, 2008 13:59
-
-
Save riferrei/28918 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 PedidoMultiplicacao implements Serializable { | |
private int a; | |
private int b; | |
public int getA() { | |
return a; | |
} | |
public void setA(int a) { | |
this.a = a; | |
} | |
public int getB() { | |
return b; | |
} | |
public void setB(int b) { | |
this.b = b; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment