Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. /**
  2. *
  3. * Beschreibung
  4. *
  5. * @version 1.0 vom 23.09.2019
  6. * @author
  7. */
  8.  
  9. public class Punkt6 {
  10.  
  11. private Double x;
  12. private Double y;
  13.  
  14. public void setX(Double x){
  15. this.x = x;
  16.  
  17. }
  18.  
  19. public void setY(Double y){
  20. this.y = y;
  21. }
  22.  
  23. public Double getX(){
  24. return x;
  25. }
  26.  
  27. public Double getY(){
  28. return y;
  29. }
  30.  
  31. } // end of class Punkt6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement