- Timestamp:
- 2016-12-08T09:23:54+01:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/AbstractPrimitive.java
r11368 r11369 57 57 * and on upload the object will be send to the server. 58 58 */ 59 protected static final short FLAG_MODIFIED = 0x0001;59 protected static final short FLAG_MODIFIED = 1 << 0; 60 60 61 61 /** … … 63 63 * as deleted on the server. 64 64 */ 65 protected static final short FLAG_VISIBLE = 0x0010;65 protected static final short FLAG_VISIBLE = 1 << 1; 66 66 67 67 /** … … 72 72 * objects still referring to it. 73 73 */ 74 protected static final short FLAG_DELETED = 0x0100;74 protected static final short FLAG_DELETED = 1 << 2; 75 75 76 76 /** … … 79 79 * fetched from the server. 80 80 */ 81 protected static final short FLAG_INCOMPLETE = 0x1000;81 protected static final short FLAG_INCOMPLETE = 1 << 3; 82 82 83 83 /**
Note:
See TracChangeset
for help on using the changeset viewer.