Package com.salas.bb.views.feeds

Examples of com.salas.bb.views.feeds.ArticlePinControl


        if (aItem.getObject() instanceof IArticle)
        {
            IArticle article = (IArticle)aItem.getObject();

            lbPin = new ArticlePinControl(article);
            add(lbPin, cc.xy(10, 2));

            lbUnread = new ArticleReadControl(article);
            add(lbUnread, cc.xy(8, 2));
View Full Code Here


                    BorderFactory.createMatteBorder(0, 5, 0, 0, Color.lightGray),
                    BorderFactory.createEmptyBorder(0, 10, 0, 0)
                )));

        lbDate  = new JLabel(SimpleDateFormat.getDateInstance().format(date), SwingConstants.LEFT);
        lbPin   = new ArticlePinControl(model.getSelectedGuide(), model.getSelectedFeed(), article);
        lnHideText = new LinkButton("hide.text.button")
        {
            protected void doAction()
            {
                setTextButton(true);
View Full Code Here

        lbDate = new JLabel(getDateFormat().format(date), SwingConstants.LEFT);
        lbTime = new JLabel(getTimeFormat().format(date), SwingConstants.LEFT);

        GlobalModel model = GlobalModel.SINGLETON;
        lbPin = new ArticlePinControl(model.getSelectedGuide(), model.getSelectedFeed(), article);
        lbColorCode = createColorCode();

        panel.add(lbDate, CELL_CONSTRAINTS.xy(1, 1));
        panel.add(lbTime, CELL_CONSTRAINTS.xy(2, 1));
        panel.add(lbPin, CELL_CONSTRAINTS.xy(4, 1));
View Full Code Here

TOP

Related Classes of com.salas.bb.views.feeds.ArticlePinControl

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.