Package org.eclipse.wst.xml.core.internal.search.matching

Examples of org.eclipse.wst.xml.core.internal.search.matching.PatternMatcher


   */
  public abstract String[] getSupportedContentTypes();

  public void populateSearchDocument(SearchDocument document, SearchPattern pattern)
  {
    PatternMatcher matcher = (PatternMatcher)pattern.getAdapter(PatternMatcher.class);
    if(matcher == null){
      matcher = getAdapter(pattern, PatternMatcher.class);
    }
    XMLQuickScan.populateSearchDocument(document, matcher, pattern);   
  }
View Full Code Here

TOP

Related Classes of org.eclipse.wst.xml.core.internal.search.matching.PatternMatcher

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.