(DataOutputStream os)
| 133 | public boolean isPresence() { return messageType==MESSAGE_TYPE_PRESENCE; } |
| 134 | |
| 135 | public void serialize(DataOutputStream os) throws IOException { |
| 136 | os.writeUTF(from); |
| 137 | os.writeUTF(body); |
| 138 | os.writeLong(dateGmt); |
| 139 | if (subject!=null) os.writeUTF(subject); |
| 140 | } |
| 141 | |
| 142 | public Msg (DataInputStream is) throws IOException { |
| 143 | from=is.readUTF(); |