Changeset 3593 in osm for applications/editors/josm/plugins/mappaint/src/mappaint/LineElemStyle.java
- Timestamp:
- 2007-07-15T04:42:24+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mappaint/src/mappaint/LineElemStyle.java
r2787 r3593 7 7 int realWidth = 0; //the real width of this line in meter 8 8 Color colour; 9 boolean dashed = false; 9 10 10 public LineElemStyle (int width, int realWidth, Color colour, int minZoom)11 public LineElemStyle (int width, int realWidth, Color colour, boolean dashed, int minZoom) 11 12 { 12 13 this.width = width; 13 14 this.realWidth = realWidth; 14 15 this.colour = colour; 16 this.dashed = dashed; 15 17 this.minZoom = minZoom; 16 18 } … … 33 35 @Override public String toString() 34 36 { 35 return "LineElemStyle: width= " + width + " colour=" + colour;37 return "LineElemStyle: width= " + width + "realWidth= " + realWidth + " colour=" + colour + " dashed=" + dashed; 36 38 } 37 39 }
Note:
See TracChangeset
for help on using the changeset viewer.