Package org.eclipse.ecf.tutorial.scribbleshare.toolbox

Examples of org.eclipse.ecf.tutorial.scribbleshare.toolbox.ToolboxLabelProvider


    final TableViewer toolbox = new TableViewer(paletteComposite, SWT.FLAT
        | SWT.FULL_SELECTION);
    toolboxGridData = new GridData(GridData.FILL_BOTH);
    toolbox.getTable().setLayoutData(toolboxGridData);
    toolbox.setLabelProvider(new ToolboxLabelProvider());
    toolbox.setContentProvider(new ListContentProvider());
    toolbox.setInput(createTools());
    toolbox.addSelectionChangedListener(new ISelectionChangedListener() {
      public void selectionChanged(SelectionChangedEvent event) {
        currentTool = (AbstractTool) ((StructuredSelection) toolbox
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.tutorial.scribbleshare.toolbox.ToolboxLabelProvider

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.