Package org.twodividedbyzero.idea.findbugs.gui.common

Examples of org.twodividedbyzero.idea.findbugs.gui.common.FilterFileChooserDescriptor



  private class FileChooserActionListener implements ActionListener {

    public void actionPerformed(final ActionEvent e) {
      final FileChooserDescriptor descriptor = new FilterFileChooserDescriptor(
          "Select",
          "Select an export directory");
      final VirtualFile toSelect = LocalFileSystem.getInstance().findFileByPath(getExportDirTextField().getText());
      final VirtualFile chosen = FileChooser.chooseFile(descriptor, _parent, _parent.getProject(), toSelect);
      if (chosen != null) {
View Full Code Here


  }


  @edu.umd.cs.findbugs.annotations.SuppressFBWarnings({"ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"})
  public void actionPerformed(final ActionEvent e) {
    final FileChooserDescriptor descriptor = new FilterFileChooserDescriptor(
      (String)getValue(Action.NAME),
      (String)getValue(Action.SHORT_DESCRIPTION),
      _fileFilter);

    VirtualFile toSelect = null;
View Full Code Here

TOP

Related Classes of org.twodividedbyzero.idea.findbugs.gui.common.FilterFileChooserDescriptor

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.