Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class grafico {
- double x,y;
- boolean status;
- public grafico (double a,double b){
- this.x=a;
- this.y=b;
- }
- void setstatus(boolean b){
- this.status=b;
- }
- boolean getstatus(){return this.status;}
- double getx(){return this.x;}
- double gety(){return this.y;}
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement