+ +

Filters are a solution to the display of complex classes. + At times, classes have many member variables but not all of these are actually + necessary for the user to see.

+

A filter will solve this issue by only letting the user see those member + variables he cares about. Of course, the equivalent of a filter can be implemented easily + using synthetic children, but a filter lets you get the job done without having to write + Python code.

+

For instance, if your class Foobar has member variables named A thru Z, but you only need to see + the ones named B, H and Q, you can define a filter: +