use of org.eclipse.ecf.bulletinboard.IllegalWriteException in project ecf by eclipse.
the class Thread method createReplyMessage.
public IThreadMessage createReplyMessage() throws IllegalWriteException {
if ((mode & READ_ONLY) == READ_ONLY) {
throw new IllegalWriteException(E_READ_ONLY);
}
ThreadMessage msg = new ThreadMessage();
msg.setBulletinBoard(bb);
msg.setThread(this);
return msg;
}
Aggregations