Changeset 33974 in osm for applications/editors/josm/plugins/indoorhelper/src/model/PresetCounter.java
- Timestamp:
- 2018-01-04T11:05:03+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/indoorhelper/src/model/PresetCounter.java
r33887 r33974 30 30 * 31 31 * @author egru 32 * 32 * @author rebsc 33 33 */ 34 34 public class PresetCounter { … … 49 49 50 50 counterList.add(new ObjectCounter(IndoorObject.CONCRETE_WALL, 0)); 51 counterList.add(new ObjectCounter(IndoorObject.DOOR, 0)); 51 counterList.add(new ObjectCounter(IndoorObject.DOOR_PRIVATE, 0)); 52 counterList.add(new ObjectCounter(IndoorObject.DOOR_PUBLIC, 0)); 52 53 counterList.add(new ObjectCounter(IndoorObject.ELEVATOR, 0)); 53 54 counterList.add(new ObjectCounter(IndoorObject.ENTRANCE, 0)); 55 counterList.add(new ObjectCounter(IndoorObject.ENTRANCE_EXIT_ONLY, 0)); 56 counterList.add(new ObjectCounter(IndoorObject.ACCESS_PRIVATE, 0)); 57 counterList.add(new ObjectCounter(IndoorObject.ACCESS_PUBLIC, 0)); 54 58 counterList.add(new ObjectCounter(IndoorObject.GLASS_WALL, 0)); 55 59 counterList.add(new ObjectCounter(IndoorObject.ROOM, 0)); 56 counterList.add(new ObjectCounter(IndoorObject.SHELL, 0));57 counterList.add(new ObjectCounter(IndoorObject.STAIRWAYS, 0));58 60 counterList.add(new ObjectCounter(IndoorObject.STEPS, 0)); 61 counterList.add(new ObjectCounter(IndoorObject.CORRIDOR, 0)); 59 62 counterList.add(new ObjectCounter(IndoorObject.TOILET_FEMALE, 0)); 60 63 counterList.add(new ObjectCounter(IndoorObject.TOILET_MALE, 0)); 64 counterList.add(new ObjectCounter(IndoorObject.ZONE, 0)); 65 counterList.add(new ObjectCounter(IndoorObject.BENCH, 0)); 61 66 } 62 67 … … 134 139 } 135 140 141 142 143 /** 144 * 145 * 146 * 147 * 148 * 149 * 150 * 151 * 152 * 153 */ 136 154 }
Note:
See TracChangeset
for help on using the changeset viewer.