Skip to content

Instantly share code, notes, and snippets.

@riferrei
Created November 25, 2008 13:59
Show Gist options
  • Save riferrei/28918 to your computer and use it in GitHub Desktop.
Save riferrei/28918 to your computer and use it in GitHub Desktop.
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