Changeset 32638 in osm for applications/editors/josm/plugins/NanoLog/src/nanolog/NanoLogEntry.java
- Timestamp:
- 2016-07-11T23:01:43+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/NanoLog/src/nanolog/NanoLogEntry.java
r31981 r32638 7 7 /** 8 8 * This holds one NanoLog entry. 9 * 9 * 10 10 * @author zverik 11 11 */ … … 18 18 private LatLon basePos; 19 19 20 public NanoLogEntry( Date time, String message, LatLon basePos, Integer baseDir) {20 public NanoLogEntry(Date time, String message, LatLon basePos, Integer baseDir) { 21 21 this.basePos = basePos; 22 22 this.baseDir = baseDir; … … 27 27 } 28 28 29 public NanoLogEntry( Date time, String message) {29 public NanoLogEntry(Date time, String message) { 30 30 this(time, message, null, null); 31 31 } 32 32 33 33 public Integer getDirection() { 34 34 return direction; … … 43 43 } 44 44 45 public void setPos( LatLon pos) {45 public void setPos(LatLon pos) { 46 46 this.pos = pos; 47 47 } 48 48 49 public void setDirection( Integer direction) {49 public void setDirection(Integer direction) { 50 50 this.direction = direction; 51 51 } … … 64 64 65 65 @Override 66 public int compareTo( NanoLogEntry t) {66 public int compareTo(NanoLogEntry t) { 67 67 return time.compareTo(t.time); 68 68 }
Note:
See TracChangeset
for help on using the changeset viewer.
