Ignore:
Timestamp:
2013-07-26T13:38:17+02:00 (11 years ago)
Author:
bastiK
Message:

see #8902 - add missing @Override annotations (patch by shinigami)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/progress/PleaseWaitProgressMonitor.java

    r5826 r6084  
    116116
    117117    private ActionListener cancelListener = new ActionListener(){
     118        @Override
    118119        public void actionPerformed(ActionEvent e) {
    119120            cancel();
     
    150151    public void doBeginTask() {
    151152        doInEDT(new Runnable() {
     153            @Override
    152154            public void run() {
    153155                Main.currentProgressMonitor = PleaseWaitProgressMonitor.this;
     
    184186            currentProgressValue = newValue;
    185187            doInEDT(new Runnable() {
     188                @Override
    186189                public void run() {
    187190                    ProgressMonitorDialog dialog = getDialog();
     
    199202        this.customText = title;
    200203        doInEDT(new Runnable() {
     204            @Override
    201205            public void run() {
    202206                ProgressMonitorDialog dialog = getDialog();
     
    213217        this.title = title;
    214218        doInEDT(new Runnable() {
     219            @Override
    215220            public void run() {
    216221                ProgressMonitorDialog dialog = getDialog();
     
    226231        this.indeterminate = value;
    227232        doInEDT(new Runnable() {
     233            @Override
    228234            public void run() {
    229235                // Enable only if progress is at the beginning. Doing intermediate progress in the middle
     
    240246    public void appendLogMessage(final String message) {
    241247        doInEDT(new Runnable() {
     248            @Override
    242249            public void run() {
    243250                ProgressMonitorDialog dialog = getDialog();
Note: See TracChangeset for help on using the changeset viewer.