mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-05-04 00:24:32 +02:00
Let's dance baby2
This commit is contained in:
parent
3b3d1e8178
commit
2964ebb8e5
@ -14,11 +14,12 @@ public final class SpeedMeter implements Runnable, SecureNotifiable
|
|||||||
private volatile long _lastSpeed;
|
private volatile long _lastSpeed;
|
||||||
private volatile boolean _exit;
|
private volatile boolean _exit;
|
||||||
private final Object _secure_notify_lock;
|
private final Object _secure_notify_lock;
|
||||||
private boolean _notified=false;
|
private boolean _notified;
|
||||||
|
|
||||||
|
|
||||||
SpeedMeter(Transference transference, GlobalSpeedMeter gspeed)
|
SpeedMeter(Transference transference, GlobalSpeedMeter gspeed)
|
||||||
{
|
{
|
||||||
|
this._notified = false;
|
||||||
_secure_notify_lock = new Object();
|
_secure_notify_lock = new Object();
|
||||||
_transference = transference;
|
_transference = transference;
|
||||||
_progress = transference.getProgress();
|
_progress = transference.getProgress();
|
||||||
|
@ -22,9 +22,10 @@ abstract public class TransferenceManager implements Runnable, SecureNotifiable
|
|||||||
private final javax.swing.JPanel _scroll_panel;
|
private final javax.swing.JPanel _scroll_panel;
|
||||||
private final MainPanel _main_panel;
|
private final MainPanel _main_panel;
|
||||||
private final Object _secure_notify_lock;
|
private final Object _secure_notify_lock;
|
||||||
private boolean _notified=false;
|
private boolean _notified;
|
||||||
|
|
||||||
public TransferenceManager(MainPanel main_panel, javax.swing.JPanel scroll_panel) {
|
public TransferenceManager(MainPanel main_panel, javax.swing.JPanel scroll_panel) {
|
||||||
|
this._notified = false;
|
||||||
|
|
||||||
_main_panel = main_panel;
|
_main_panel = main_panel;
|
||||||
_scroll_panel = scroll_panel;
|
_scroll_panel = scroll_panel;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user