Package graphmatcher.matcher.simple

Examples of graphmatcher.matcher.simple.SimpleMatcher


public class MatcherFactory {

  public static AbstractMatcher createMatcher(String matcherID, Graph pattern, Graph template) {
    if (matcherID.equals(SimpleMatcher.matcherID)) {
      return new SimpleMatcher(pattern, template);
    }
    if (matcherID.equals(ShapeContextGraphMatcher.matcherID)) {
      return new ShapeContextGraphMatcher(pattern, template);
    }
    if (matcherID.equals(KOSystemGraphMatcher.matcherID)) {
View Full Code Here

TOP

Related Classes of graphmatcher.matcher.simple.SimpleMatcher

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.