Ignore:
Timestamp:
2013-01-15T15:08:25+01:00 (13 years ago)
Author:
malcolmh
Message:

save

File:
1 edited

Legend:

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

    r29198 r29199  
    108108
    109109        public static class LineStyle {
    110                 BasicStroke stroke;
    111                 Color line;
    112                 Color fill;
    113 
    114                 public LineStyle(BasicStroke istroke, Color iline, Color ifill) {
    115                         stroke = istroke;
     110                public Color line;
     111                public float width;
     112                public float[] dash;
     113                public Color fill;
     114
     115                public LineStyle(Color iline, float iwidth, float[] idash, Color ifill) {
    116116                        line = iline;
     117                        width = iwidth;
     118                        dash = idash;
    117119                        fill = ifill;
    118120                }
Note: See TracChangeset for help on using the changeset viewer.