Package name.abuchen.portfolio.ui.preferences

Examples of name.abuchen.portfolio.ui.preferences.UpdatePreferencePage


{
    @Execute
    public void execute(@Named(IServiceConstants.ACTIVE_SHELL) Shell shell)
    {
        PreferenceManager pm = new PreferenceManager();
        pm.addToRoot(new PreferenceNode(PortfolioPlugin.PLUGIN_ID + ".updates", new UpdatePreferencePage())); //$NON-NLS-1$
       
        PreferenceDialog dialog = new PreferenceDialog(shell, pm);
        dialog.setPreferenceStore(PortfolioPlugin.getDefault().getPreferenceStore());
        dialog.create();
        dialog.getTreeViewer().setComparator(new ViewerComparator());
View Full Code Here

TOP

Related Classes of name.abuchen.portfolio.ui.preferences.UpdatePreferencePage

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.