Advertisement
sergAccount

Untitled

Oct 11th, 2020
2,163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.55 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package app54;
  7.  
  8. import java.awt.Graphics;
  9. import javax.swing.JPanel;
  10.  
  11. public class DrawPanel extends JPanel{
  12.     // конструктор класса
  13.     public DrawPanel(){        
  14.     }
  15.     // метод для отрисовки графических объектов на экране
  16.     public void paintComponent(Graphics g){
  17.        
  18.     }    
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement