Varasku

zad - klasa publiczna

Oct 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1.  
  2. package pakiet1;
  3.  
  4. import java.awt.*;
  5.  
  6.  
  7. public class PointKY {
  8.  
  9. private Point point = new Point();
  10.  
  11.  
  12. public PointKY(int x, int y)
  13. {
  14. point.x=x;
  15. point.y=y;
  16. }
  17. public java.awt.Point getPoint()
  18. {
  19. return point;
  20. }
  21. public void setPoint(java.awt.Point point)
  22. {
  23. this.point=point;
  24. }
  25.  
  26. @Override
  27. public String toString() {
  28. return "PointKY{" + "point=" + point + '}';
  29. }
  30.  
  31. }
Add Comment
Please, Sign In to add comment