Guest User

Untitled

a guest
Jul 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. import java.awt.*;
  2. /**
  3. * Write a description of class View here.
  4. *
  5. * @author (your name)
  6. * @version (a version number or a date)
  7. */
  8. public class View extends Canvas
  9. {
  10. private Bord b;
  11. private int grootte;
  12.  
  13. /**
  14. * Constructor for objects of class View
  15. */
  16. public View(Bord b)
  17. {
  18. this.b = b;
  19. grootte = 50;
  20. }
Add Comment
Please, Sign In to add comment