Changeset 2512 in josm for trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
- Timestamp:
- 2009-11-24T10:45:04+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r2485 r2512 23 23 import org.openstreetmap.josm.data.osm.visitor.Visitor; 24 24 import org.openstreetmap.josm.gui.mappaint.ElemStyle; 25 26 25 27 26 /** … … 97 96 } 98 97 99 100 98 private static final int FLAG_MODIFIED = 1 << 0; 101 99 private static final int FLAG_VISIBLE = 1 << 1; … … 150 148 return ret; 151 149 } 152 153 150 154 151 /* mappaint data */ … … 496 493 return uninteresting; 497 494 } 498 499 495 500 496 private static Collection<String> directionKeys = null; … … 772 768 /** 773 769 * Replies true if this primitive has a tag with key <code>key</code> 774 * 770 * 775 771 * @param key the key 776 772 * @return true, if his primitive has a tag with key <code>key</code> … … 787 783 /** 788 784 * Replies true if other isn't null and has the same tags (key/value-pairs) as this. 789 * 785 * 790 786 * @param other the other object primitive 791 787 * @return true if other isn't null and has the same tags (key/value-pairs) as this. … … 800 796 801 797 private Object referrers; 802 803 798 804 799 /** … … 895 890 return result; 896 891 } 897 898 892 899 893 /** … … 1030 1024 } 1031 1025 1032 1033 1026 /** 1034 1027 * Replies the name of this primitive. The default implementation replies the value … … 1146 1139 } 1147 1140 } 1148
Note:
See TracChangeset
for help on using the changeset viewer.
