Changeset 3614 in osm for applications/editors/josm/plugins/mappaint
- Timestamp:
- 2007-07-17T22:07:04+02:00 (17 years ago)
- Location:
- applications/editors/josm/plugins/mappaint/src/mappaint
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/mappaint/src/mappaint/AreaElemStyle.java
r3601 r3614 6 6 Color colour; 7 7 8 public AreaElemStyle (Color colour, int maxScale, intminScale)8 public AreaElemStyle (Color colour, long maxScale, long minScale) 9 9 { 10 10 this.colour = colour; -
applications/editors/josm/plugins/mappaint/src/mappaint/ElemStyle.java
r3601 r3614 4 4 { 5 5 // zoom range to display the feature 6 protected intminScale;7 protected intmaxScale;6 protected long minScale; 7 protected long maxScale; 8 8 9 public intgetMinScale()9 public long getMinScale() 10 10 { 11 11 return minScale; 12 12 } 13 public intgetMaxScale()13 public long getMaxScale() 14 14 { 15 15 return maxScale; -
applications/editors/josm/plugins/mappaint/src/mappaint/ElemStyleHandler.java
r3601 r3614 26 26 ImageIcon curIcon = null; 27 27 boolean curIconAnnotate = true; 28 intcurScaleMax = 1000000000;29 intcurScaleMin = 0;28 long curScaleMax = 1000000000; 29 long curScaleMin = 0; 30 30 31 31 public ElemStyleHandler( ) … … 191 191 String content = new String(ch, start, length); 192 192 193 curScaleMax = Integer.parseInt(content);193 curScaleMax = Long.parseLong(content); 194 194 } 195 195 if( inScaleMin == true) { 196 196 String content = new String(ch, start, length); 197 197 198 curScaleMin = Integer.parseInt(content);198 curScaleMin = Long.parseLong(content); 199 199 } 200 200 } -
applications/editors/josm/plugins/mappaint/src/mappaint/IconElemStyle.java
r3601 r3614 7 7 boolean annotate; 8 8 9 public IconElemStyle (ImageIcon icon, boolean annotate, int maxScale, intminScale)9 public IconElemStyle (ImageIcon icon, boolean annotate, long maxScale, long minScale) 10 10 { 11 11 this.icon=icon; -
applications/editors/josm/plugins/mappaint/src/mappaint/LineElemStyle.java
r3601 r3614 9 9 boolean dashed = false; 10 10 11 public LineElemStyle (int width, int realWidth, Color colour, boolean dashed, int maxScale, intminScale)11 public LineElemStyle (int width, int realWidth, Color colour, boolean dashed, long maxScale, long minScale) 12 12 { 13 13 this.width = width;
Note:
See TracChangeset
for help on using the changeset viewer.