Package com.salas.bb.views

Examples of com.salas.bb.views.ArticleListPanel


    /**
     * Initializes components of the frame.
     */
    private void initComponents()
    {
        articleListPanel = new ArticleListPanel();
        feedsPanel = new FeedsPanel();
        guidesPanel = new GuidesPanel();
        guidesPanel.setupGuidesList(getGuidesPopupAdapter());

        // On double click actions setup
View Full Code Here


     * @param e action event details object.
     */
    public void actionPerformed(ActionEvent e)
    {
        GlobalController controller = GlobalController.SINGLETON;
        ArticleListPanel articlesListPanel = controller.getMainFrame().getArticlesListPanel();
        IFeedDisplay feedDisplay = articlesListPanel.getFeedView();

        GlobalModel model = GlobalModel.SINGLETON;
        IArticle selectedArticle = model.getSelectedArticle();
        boolean articleWasSelected = feedDisplay.selectNextArticle(INavigationModes.MODE_UNREAD);

View Full Code Here

TOP

Related Classes of com.salas.bb.views.ArticleListPanel

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.