Package ca.odell.glazedlists.swt

Examples of ca.odell.glazedlists.swt.TextWidgetMatcherEditor


     * @param filterEdit a text field for typing in the filter text.
     */
    public TextFilterList(EventList source, Text filterEdit, TextFilterator filterator) {
        super(new FilterList(source));
        this.filterEdit = filterEdit;
        matcherEditor = new TextWidgetMatcherEditor(filterEdit, filterator, false);
        ((FilterList)this.source).setMatcherEditor(matcherEditor);

        // handle changes
        this.source.addListEventListener(this);
    }
View Full Code Here


        boolean live = matcherEditor.isLive();
        TextFilterator textFilterator = matcherEditor.getFilterator();
        matcherEditor.dispose();

        // prepare the new matcher editor
        this.matcherEditor = new TextWidgetMatcherEditor(filterEdit, textFilterator, live);
        ((FilterList)source).setMatcherEditor(matcherEditor);
    }
View Full Code Here

TOP

Related Classes of ca.odell.glazedlists.swt.TextWidgetMatcherEditor

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.