Package ca.odell.glazedlists.impl.filter

Examples of ca.odell.glazedlists.impl.filter.UnicodeCaseInsensitiveTextSearchStrategy


    /** a text search strategy with full unicode locale-sensitive string searching */
    public static final Object UNICODE_TEXT_SEARCH_STRATEGY = new UnicodeStrategyFactory();
    // this would be an anonymous class if declawer supported them!
    private static class UnicodeStrategyFactory implements TextSearchStrategy.Factory {
        public TextSearchStrategy create(int mode, String filter) {
            return new UnicodeCaseInsensitiveTextSearchStrategy(mode);
        }
View Full Code Here

TOP

Related Classes of ca.odell.glazedlists.impl.filter.UnicodeCaseInsensitiveTextSearchStrategy

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.