Package graphmatcher.gui.optionpanel

Source Code of graphmatcher.gui.optionpanel.SimpleOptionPanel

package graphmatcher.gui.optionpanel;

import graphmatcher.matcher.MatchingOptions;
import graphmatcher.matcher.simple.SimpleMatcher;

public class SimpleOptionPanel extends IOptionPanel {

  @Override
  public String getMatcherID() {
    return SimpleMatcher.matcherID;
  }

  @Override
  public MatchingOptions getMatchingOptions() {
    MatchingOptions options = new MatchingOptions(SimpleMatcher.matcherID);
    return options;
  }

  @Override
  public String getDefaultFileName() {
    return "simpleMatcher.txt";
  }

  @Override
  public void setEditable(boolean editable) {
  }
}
TOP

Related Classes of graphmatcher.gui.optionpanel.SimpleOptionPanel

TOP
Copyright © 2018 www.massapi.com. 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.