Hi!
I'm putting together a DialogComponentColumnFilter. I'd like it to list all of the StringCell, IntCell and DoubleCells, but not MolCell (and other structure-containing Cells).
I'm using a DataValueColumnFilter(StringValue.class, IntValue.class, DoubleValue.class), but I don't see a way to say "don't include String-derived classes (like MolValue)". Do I need to write my_own_ColumnFilter, implementing the ColumnFilter interface, or is there a simpler way?
Joe