Changeset 990 in josm for trunk/src/org/openstreetmap/josm/gui/mappaint/LineElemStyle.java
- Timestamp:
- 2008-09-18T16:50:16+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/LineElemStyle.java
r885 r990 2 2 3 3 import java.awt.Color; 4 import java.util.LinkedList; 5 import java.util.List; 4 import java.util.Collection; 6 5 7 6 public class LineElemStyle extends ElemStyle implements Comparable<LineElemStyle> … … 16 15 public WidthMode widthMode; 17 16 18 public List<LineElemStyle> overlays;17 public Collection<LineElemStyle> overlays; 19 18 20 19 public LineElemStyle(LineElemStyle s, long maxScale, long minScale) { … … 31 30 } 32 31 33 public LineElemStyle(LineElemStyle s, List<LineElemStyle> overlays) {32 public LineElemStyle(LineElemStyle s, Collection<LineElemStyle> overlays) { 34 33 this.width = s.width; 35 34 this.realWidth = s.realWidth;
Note:
See TracChangeset
for help on using the changeset viewer.
