Changeset 29568 in osm for applications/editors/josm/plugins/geochat/src/geochat/ChatMessage.java
- Timestamp:
- 2013-05-09T11:03:28+02:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/geochat/src/geochat/ChatMessage.java
r29558 r29568 17 17 private long id; 18 18 private boolean priv; 19 private boolean incoming; 19 20 20 public ChatMessage( long id, LatLon pos, String author, String message, Date time ) { 21 public ChatMessage( long id, LatLon pos, String author, boolean incoming, String message, Date time ) { 21 22 this.id = id; 22 23 this.author = author; … … 24 25 this.pos = pos; 25 26 this.time = time; 27 this.incoming = incoming; 26 28 this.priv = false; 27 29 this.recipient = null; … … 63 65 } 64 66 67 public boolean isIncoming() { 68 return incoming; 69 } 70 65 71 public Date getTime() { 66 72 return time;
Note:
See TracChangeset
for help on using the changeset viewer.