You are using a browser which doesn't fully support Cascading Style Sheets. This site will look much better in a browser that supports web standards, but its content is accessible to any browser or Internet device.

sourceFilters()

Invocation: called after the constructor of a subclass and checkUsage(), by the bootstrap() method.

Function in the Generator class: enables perl sources (should be valid for most generators).

Intention for subclasses: add own source filters.

Parameters: the object.

Return values: a filter list.

Hints: in most cases it will be useful to invoke the parent method, except when perl filters are not required, as by

    (
     $me->SUPER::sourceFilters,  # parent class list
     "xml",                      # embedded XML;
    );