source: josm/trunk/src/org/openstreetmap/josm/gui/mappaint/ElemStyle.java@ 1583

Last change on this file since 1583 was 1190, checked in by stoecker, 16 years ago

added first part of multipolygon drawing

  • Property svn:eol-style set to native
File size: 329 bytes
Line 
1package org.openstreetmap.josm.gui.mappaint;
2
3abstract public class ElemStyle
4{
5 // zoom range to display the feature
6 public long minScale;
7 public long maxScale;
8
9 public int priority;
10 public String code;
11
12 public Boolean equals(ElemStyle s)
13 {
14 return s != null && s.code.equals(code);
15 }
16}
17
18
19
Note: See TracBrowser for help on using the repository browser.