Package de.tobject.findbugs.view.explorer

Examples of de.tobject.findbugs.view.explorer.GroupSelectionDialog


        if (navigator == null) {
            return;
        }
        BugContentProvider provider = BugContentProvider.getProvider(navigator.getNavigatorContentService());
        List<GroupType> list = provider.getGrouping().asList();
        GroupSelectionDialog dialog = new GroupSelectionDialog(navigator.getSite().getShell(), list);
        dialog.setTitle("Bug Group Configuration");
        int result = dialog.open();
        if (result != Window.OK) {
            return;
        }
        Grouping grouping = Grouping.createFrom(dialog.getGroups());
        if (grouping == null) {
            return;
        }
        provider.setGrouping(grouping);
        CommonViewer viewer = navigator.getCommonViewer();
View Full Code Here

TOP

Related Classes of de.tobject.findbugs.view.explorer.GroupSelectionDialog

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.