(String field, String regex)
| 618 | |
| 619 | |
| 620 | static private boolean matchField(String field, String regex) { |
| 621 | return (field != null) && field.toLowerCase().matches(regex); |
| 622 | } |
| 623 | |
| 624 | |
| 625 | static class ContributionRowFilter extends RowFilter<ContributionTableModel, Integer> { |