Package org.eclipse.nebula.widgets.nattable.tree.action

Examples of org.eclipse.nebula.widgets.nattable.tree.action.TreeExpandCollapseKeyAction


        this.selectionLayer = selectionLayer;
    }

    @Override
    public void configureUiBindings(UiBindingRegistry uiBindingRegistry) {
        TreeExpandCollapseKeyAction action = new TreeExpandCollapseKeyAction(this.selectionLayer);
        uiBindingRegistry.registerFirstKeyBinding(anchorLabel(this.selectionLayer, this.treeLayer, TREE_EXPANDED_CONFIG_TYPE, new KeyEventMatcher(SWT.NONE, 32)), action);
        uiBindingRegistry.registerFirstKeyBinding(anchorLabel(this.selectionLayer, this.treeLayer, TREE_COLLAPSED_CONFIG_TYPE, new KeyEventMatcher(SWT.NONE, 32)), action);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.nebula.widgets.nattable.tree.action.TreeExpandCollapseKeyAction

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.