Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public class Window extends Glyph {
  2. public void Redraw() {
  3. // Toda implementação de Draw...
  4. }
  5. }
  6.  
  7. public class Window extends Glyph {
  8. public void Redraw() {
  9. super.Draw(this);
  10. }
  11.  
  12. public void Iconify() { }
  13.  
  14. public void Lower() { }
  15.  
  16. public void DrawLine() { }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement