Package org.eclipse.ui.dialogs

Examples of org.eclipse.ui.dialogs.PatternFilter


     * @return the tree viewer
     */
    protected TreeViewer createTreeViewer(Composite parent) {
        int style = SWT.BORDER | (fAllowMultiple ? SWT.MULTI : SWT.SINGLE);
    FilteredTree filteredTree = new FilteredTree(parent, style,
        new PatternFilter());
//    filteredTree.setBackground(parent.getDisplay().getSystemColor(
//        SWT.COLOR_LIST_BACKGROUND));

//    GridData gd = new GridData(SWT.FILL, SWT.FILL, true, true);
//    gd.horizontalIndent = IDialogConstants.HORIZONTAL_MARGIN;
View Full Code Here

TOP

Related Classes of org.eclipse.ui.dialogs.PatternFilter

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.