Returns a replicate of this message (identical except for the unique id) @return A replicate of the message
()
| 326 | * @return A replicate of the message |
| 327 | */ |
| 328 | public Message replicate() { |
| 329 | Message m = new Message(from, to, id, size); |
| 330 | m.copyFrom(this); |
| 331 | return m; |
| 332 | } |
| 333 | |
| 334 | /** |
| 335 | * Compares two messages by their ID (alphabetically). |
no test coverage detected