Package com.intellij.openapi.options

Examples of com.intellij.openapi.options.SearchableConfigurable


    myConfigureRebarButton.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        OptionsEditor optionsEditor = OptionsEditor.KEY.getData(DataManager.getInstance().getDataContext(myConfigureRebarButton));
        assert optionsEditor != null;
        SearchableConfigurable erlangExternalToolsConfigurable = optionsEditor.findConfigurableById(ErlangExternalToolsConfigurable.ERLANG_RELATED_TOOLS);
        optionsEditor.select(erlangExternalToolsConfigurable);
      }
    });
    myRootPanel.addAncestorListener(new AncestorAdapter() {
      @Override
View Full Code Here

TOP

Related Classes of com.intellij.openapi.options.SearchableConfigurable

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.