Changeset 33498 in osm for applications/editors/josm
- Timestamp:
- 2017-08-15T22:14:18+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/pt_assistant/src/org/openstreetmap/josm/plugins/pt_assistant/data/PTStop.java
r33468 r33498 33 33 /* the name of this stop */ 34 34 private String name = ""; 35 36 /* indicates a stop where people can only exit the bus */ 37 private boolean exitOnly; 38 39 /* indicates a stop where people can only entry the bus */ 40 private boolean entryOnly; 35 41 36 42 /** … … 238 244 this.stopPositionRM = stopPositionRM; 239 245 } 246 247 public boolean getExitOnly() { 248 return exitOnly; 249 } 250 251 public void setExitOnly(boolean exitOnly) { 252 this.exitOnly = exitOnly; 253 } 254 255 public boolean getEntryOnly() { 256 return entryOnly; 257 } 258 259 public void setEntryOnly(boolean entryOnly) { 260 this.entryOnly = entryOnly; 261 } 240 262 }
Note:
See TracChangeset
for help on using the changeset viewer.