I am will aware that properties are not mutable, but what about filters? I took a peak at the implementation of FilterSet. When a new Filter is added it is appended to the *end* of a Vector.
When processing text, the replaceTokens() method calls getFilterHash() which creates a new Hashtable and populates it with the values of the filters in the Vector. It populates the hashtable by iterating over the Vector in the order they were added. This means that I can define the same filter value twice, and the second one will take priority. This "feature" of filters does not seem to be too widely advertised. Any thoughts? Jeff __________________________________________________ Do You Yahoo!? Sign up for SBC Yahoo! Dial - First Month Free http://sbc.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
