Advertisement
aveenger17

grafico.java

May 23rd, 2013
680
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. public class grafico {
  2. double x,y;
  3. boolean status;
  4. public grafico (double a,double b){
  5.     this.x=a;
  6.     this.y=b;
  7. }
  8. void setstatus(boolean b){
  9.     this.status=b;
  10. }
  11. boolean getstatus(){return this.status;}
  12. double getx(){return this.x;}
  13. double gety(){return this.y;}
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement