Package com.intellij.ide

Examples of com.intellij.ide.DataManager


  }

  public TextFieldWithBrowseButton(JTextField field, ActionListener browseActionListener) {
    super(field, browseActionListener);
    if (ApplicationManager.getApplication() != null) {
      final DataManager manager = DataManager.getInstance();
      if (manager != null) {
        installPathCompletion(DataKeys.PROJECT.getData(manager.getDataContext()), FileChooserDescriptorFactory.createSingleLocalFileDescriptor());
      }
    }
  }
View Full Code Here

TOP

Related Classes of com.intellij.ide.DataManager

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.