Ignore:
Timestamp:
2013-11-03T11:49:12+01:00 (11 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/smed2/src/symbols/Symbols.java

    r30033 r30037  
    9191                public Color fill;
    9292
     93                public LineStyle(Color iline, float iwidth) {
     94                        line = iline;
     95                        width = iwidth;
     96                        dash = null;
     97                        fill = null;
     98                }
     99                public LineStyle(Color iline, float iwidth, float[] idash) {
     100                        line = iline;
     101                        width = iwidth;
     102                        dash = idash;
     103                        fill = null;
     104                }
     105                public LineStyle(Color iline, float iwidth, Color ifill) {
     106                        line = iline;
     107                        width = iwidth;
     108                        dash = null;
     109                        fill = ifill;
     110                }
    93111                public LineStyle(Color iline, float iwidth, float[] idash, Color ifill) {
    94112                        line = iline;
Note: See TracChangeset for help on using the changeset viewer.