RowFilter examples only do text comparison, but how does one filter rows that are linked to particular properties ?
my datamodel class
class MyDataModel
{
private ArrayList<MyFile> data; // for the rows data
...
class Myfile
{
private boolean error; // file name issues
private boolean ignored; // file ignored for process
private boolean exception; // file processed no matter other conditions
...
so how do I filter the rows where the MyFile has some property to true (or even more complex tests on these fields)
thanks