public void updateHeader(Session session) { this.title = session.getTitle(); this.tags = session.getTags(); this.description = session.getDescription(); }
public void updateSession(Session from) { Preconditions.checkNotNull(from.getId(), "Unsaved session?"); setTitleTagsDescription(from.getId(), from.getTitle(), from.getTags(), from.getDescription()); }