Package org.eclipse.search.internal.core.text

Examples of org.eclipse.search.internal.core.text.FileCharSequenceProvider


    private final Matcher matcherWithBrackets;

    public ProcessDefinitionSearchVisitor(GPDSearchQuery query) {
        this.query = query;
        this.status = new MultiStatus(NewSearchUI.PLUGIN_ID, IStatus.OK, SearchMessages.TextSearchEngine_statusMessage, null);
        this.fileCharSequenceProvider = new FileCharSequenceProvider();
        this.matcher = Pattern.compile(Pattern.quote(query.getSearchText())).matcher("");
        this.matcherWithBrackets = Pattern.compile(Pattern.quote("\"" + query.getSearchText() + "\"")).matcher("");
    }
View Full Code Here

TOP

Related Classes of org.eclipse.search.internal.core.text.FileCharSequenceProvider

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.