Package com.salas.bb.domain.prefs

Examples of com.salas.bb.domain.prefs.UserPreferences


        {
            IFeed feed = article.getFeed();
            String subject = MessageFormat.format(Strings.message("hyper.link.email.subject"),
                new Object[] { article.getTitle(), feed.getTitle() });

            UserPreferences preferences = GlobalModel.SINGLETON.getUserPreferences();
            BrowserLauncher.emailThis(null, subject, link.toString(), preferences.getInternetBrowser());
        }
    }
View Full Code Here


     *
     * @return component.
     */
    private JComponent createSubtoolbar()
    {
        UserPreferences uPrefs = GlobalModel.SINGLETON.getUserPreferences();
        String propName = UserPreferences.PROP_GOOD_CHANNEL_STARZ;
        PropertyAdapter propertyAdapter = new PropertyAdapter(uPrefs, propName, true);
        BoundedRangeAdapter model = new BoundedRangeAdapter(propertyAdapter, 0, 1, 5);

        StarsSelectionComponent starsSelector = new StarsSelectionComponent(model);
View Full Code Here

        IFeed feed = article.getFeed();
        String subject = MessageFormat.format(Strings.message("article.link.email.subject"),
            new Object[] { article.getTitle(), feed.getTitle() });

        UserPreferences preferences = model.getUserPreferences();
        BrowserLauncher.emailThis(null, subject, url.toString(), preferences.getInternetBrowser());
    }
View Full Code Here

TOP

Related Classes of com.salas.bb.domain.prefs.UserPreferences

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.