Advertisement
sergAccount

Untitled

Jan 23rd, 2021
1,047
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.53 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 javaapplication21;
  7.  
  8. import java.awt.Graphics;
  9. import javax.swing.JPanel;
  10.  
  11. /**
  12.  *
  13.  * @author Admin
  14.  */
  15. public class DrawPanel extends JPanel{
  16.     // конструктор класса
  17.     public DrawPanel(){}
  18.     // метод для вывода графики
  19.     public void paintComponent(Graphics g){
  20.        
  21.     }    
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement