source: josm/trunk/src/org/openstreetmap/josm/gui/mappaint/xml/IconPrototype.java@ 6340

Last change on this file since 6340 was 6070, checked in by stoecker, 11 years ago

see #8853 remove tabs, trailing spaces, windows line ends, strange characters

  • Property svn:eol-style set to native
File size: 728 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.mappaint.xml;
3
4import org.openstreetmap.josm.gui.mappaint.MapPaintStyles.IconReference;
5import org.openstreetmap.josm.gui.mappaint.Range;
6
7public class IconPrototype extends Prototype {
8
9 public IconReference icon;
10 public Boolean annotate;
11
12 public IconPrototype (IconPrototype i, Range range) {
13 super(range);
14 this.icon = i.icon;
15 this.annotate = i.annotate;
16 this.priority = i.priority;
17 this.conditions = i.conditions;
18 }
19
20 public IconPrototype() { init(); }
21
22 public void init() {
23 priority = 0;
24 range = new Range();
25 icon = null;
26 annotate = null;
27 }
28}
Note: See TracBrowser for help on using the repository browser.