(File dir, String name)
| 108 | * @see java.io.FilenameFilter#accept(java.io.File, java.lang.String) |
| 109 | */ |
| 110 | public boolean accept(File dir, String name) { |
| 111 | if (name.matches(regexpr)) { |
| 112 | return CompareAttributes(dir, musthave, canthave); |
| 113 | } |
| 114 | return false; |
| 115 | } |
| 116 | |
| 117 | String convert2regexpr(String pattern) { |
| 118 |
no test coverage detected