Changeset 13764 in josm for trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
- Timestamp:
- 2018-05-14T01:43:54+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/OsmPrimitive.java
r13669 r13764 471 471 } 472 472 473 /** 474 * Replies true, if this primitive is preserved from filtering. 475 * @return {@code true} if this object has the "preserved" flag enabled 476 * @since 13309 477 */ 473 @Override 478 474 public boolean isPreserved() { 479 475 return (flags & FLAG_PRESERVED) != 0; … … 990 986 } 991 987 992 /** 993 * Gets a list of all primitives in the current dataset that reference this primitive. 994 * @return The referrers 995 */ 988 @Override 996 989 public final List<OsmPrimitive> getReferrers() { 997 990 return getReferrers(false); … … 1213 1206 1214 1207 /** 1215 * Fetch the bounding box of the primitive1216 * @return Bounding box of the object1217 */1218 public abstract BBox getBBox();1219 1220 /**1221 1208 * Called by Dataset to update cached position information of primitive (bbox, cached EarthNorth, ...) 1222 1209 */
Note:
See TracChangeset
for help on using the changeset viewer.