public SuspiciousCollectionsMethodCallsInspection() {
   myReportConvertibleCalls.addActionListener(
       new ActionListener() {
         public void actionPerformed(final ActionEvent e) {
           REPORT_CONVERTIBLE_METHOD_CALLS = myReportConvertibleCalls.isSelected();
         }
       });
 }
 @Nullable
 public JComponent createOptionsPanel() {
   myReportConvertibleCalls.setSelected(REPORT_CONVERTIBLE_METHOD_CALLS);
   return myPanel;
 }