Ignore:
Timestamp:
2010-09-14T20:32:14+02:00 (14 years ago)
Author:
malcolmh
Message:

break

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/toms/src/toms/seamarks/buoys/Buoy.java

    r23158 r23162  
    520520                                }
    521521
    522                                 c = LightChar[0];
    523 
     522                                c = getLightChar();
    524523                                if (c.contains("+")) {
    525524                                        i1 = c.indexOf("+");
     
    527526                                        c = c.substring(0, i1);
    528527                                }
    529 
    530                                 if (!LightGroup[0].isEmpty())
    531                                         c = c + "(" + LightGroup[0] + ")";
     528                                if (!getLightGroup().isEmpty())
     529                                        c = c + "(" + getLightGroup() + ")";
    532530                                if (tmp != null)
    533531                                        c = c + tmp;
    534 
    535                                 c = c + " " + LightColour[0];
    536                                 lp = LightPeriod[0];
     532                                dlg.cbM01Kennung.setSelectedItem(c);
     533                                c = c + " " + getLightColour();
     534                                lp = getLightPeriod();
    537535                                if (!lp.isEmpty())
    538536                                        c = c + " " + lp + "s";
    539537                                dlg.lM01FireMark.setText(c);
    540 
    541538                                dlg.cM01Fired.setVisible(true);
    542539                                dlg.lM01Kennung.setVisible(true);
     
    614611                        } else {
    615612                                dlg.lM01FireMark.setText("");
     613                                dlg.rbM01Fired1.setVisible(false);
     614                                dlg.rbM01FiredN.setVisible(false);
     615                                dlg.cbM01Kennung.setVisible(false);
     616                                dlg.lM01Kennung.setVisible(false);
     617                                dlg.tfM01Height.setVisible(false);
     618                                dlg.lM01Height.setVisible(false);
     619                                dlg.tfM01Range.setVisible(false);
     620                                dlg.lM01Range.setVisible(false);
     621                                dlg.cbM01Colour.setVisible(false);
     622                                dlg.lM01Colour.setVisible(false);
     623                                dlg.cbM01Sector.setVisible(false);
     624                                dlg.lM01Sector.setVisible(false);
     625                                dlg.tfM01Group.setVisible(false);
     626                                dlg.lM01Group.setVisible(false);
     627                                dlg.tfM01RepeatTime.setVisible(false);
     628                                dlg.lM01RepeatTime.setVisible(false);
     629                                dlg.tfM01Bearing.setVisible(false);
     630                                dlg.lM01Bearing.setVisible(false);
     631                                dlg.tfM02Bearing.setVisible(false);
     632                                dlg.tfM01Radius.setVisible(false);
    616633                        }
    617634                } else {
Note: See TracChangeset for help on using the changeset viewer.