Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package app13;
- import java.awt.event.ActionEvent;
- import java.awt.event.ActionListener;
- import javax.swing.JPanel;
- import javax.swing.Timer;
- public class DrawPanel extends JPanel implements ActionListener {
- // переменная типа таймер - для выполнения период-ких действий
- Timer drawTimer;
- //
- public DrawPanel(){
- // создаем объект типа Timer
- drawTimer = new Timer(2000, this);
- // запуск таймера - используем метод start
- drawTimer.start();
- }
- @Override
- public void actionPerformed(ActionEvent e) {
- // данный метод будет вызваться периодически (через опред интерфал времени)
- System.out.println("actionPerformed!!!");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement