Package org.erlide.ui.navigator

Examples of org.erlide.ui.navigator.ErlElementSorter


     */
    private void createUIActions() {
        // Add sort action to dialog menu
        fSortAction = new SortAction(fTreeViewer,
                ErlideUIMessages.PDEMultiPageContentOutline_SortingAction_tooltip,
                new ErlElementSorter(ErlElementSorter.SORT_ON_NAME),
                new ErlElementSorter(ErlElementSorter.SORT_ON_EXPORT), null, false, null);
    }
View Full Code Here


    /**
     * @param actionBars
     */
    private void registerToolbarActions(final IActionBars actionBars) {
        final IToolBarManager toolBarManager = actionBars.getToolBarManager();
        fSortAction = new SortAction(getTreeViewer(), "Sort", new ErlElementSorter(
                ErlElementSorter.SORT_ON_NAME), new ErlElementSorter(
                ErlElementSorter.SORT_ON_EXPORT), null, false, ErlideUIPlugin
                .getDefault().getPreferenceStore());
        toolBarManager.add(fSortAction);

        final IMenuManager viewMenuManager = actionBars.getMenuManager();
View Full Code Here

TOP

Related Classes of org.erlide.ui.navigator.ErlElementSorter

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.