public BlogPanel(Blog blog) {
setOpaque(false);
this.blog = blog;
this.entryPanel = new BlogEntryPanel(this.blog, leftPanel.getPreferredSize().getWidth());
try {
notify.addObserver(this.entryPanel, "blogEntryDeleted", BlogService.BLOG_ENTRY_DELETED, null);
} catch (NoSuchMethodException e) {
e.printStackTrace();