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

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


 
  private PatternMatcher getAdapter(Object adaptableObject, Class adapterType) {
    if (PatternMatcher.class.equals(adapterType) &&
        (adaptableObject instanceof XMLSearchPattern ||
        adaptableObject instanceof XMLComponentSearchPattern) ) {
      return new XMLSearchPatternMatcher(this);
    }
    return null;
  }
View Full Code Here

TOP

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

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.