Package org.jriaffe.blog.panels

Examples of org.jriaffe.blog.panels.BlogEntryPanel



    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();
View Full Code Here

TOP

Related Classes of org.jriaffe.blog.panels.BlogEntryPanel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.