Package graphmatcher.gui.optionpanel

Examples of graphmatcher.gui.optionpanel.IOptionPanel


    add(matcherPanel, BorderLayout.CENTER);
  }

  public String getSelectedMatcherID() {
    IOptionPanel optionPanel = (IOptionPanel) tabbedPane.getSelectedComponent();
    return optionPanel.getMatcherID();
  }
View Full Code Here


    IOptionPanel optionPanel = (IOptionPanel) tabbedPane.getSelectedComponent();
    return optionPanel.getMatcherID();
  }

  public String getDefaultFileName() {
    IOptionPanel optionPanel = (IOptionPanel) tabbedPane.getSelectedComponent();
    return optionPanel.getDefaultFileName();
  }
View Full Code Here

    IOptionPanel optionPanel = (IOptionPanel) tabbedPane.getSelectedComponent();
    return optionPanel.getDefaultFileName();
  }

  public MatchingOptions getMatchingOptions() {
    IOptionPanel optionPanel = (IOptionPanel) tabbedPane.getSelectedComponent();
    return optionPanel.getMatchingOptions();
  }
View Full Code Here

TOP

Related Classes of graphmatcher.gui.optionpanel.IOptionPanel

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.