Test if given name matches the filter. @param name - array name to be tested @return - true if array (matrix) of this name should be processed
(String name)
| 71 | * @return - <code>true</code> if array (matrix) of this name should be processed |
| 72 | */ |
| 73 | public boolean matches(String name) { |
| 74 | if (filter.size() == 0) { |
| 75 | return true; |
| 76 | } |
| 77 | return filter.contains(name); |
| 78 | } |
| 79 | } |