Allow escaping of commas in Hivemind PropertyUtils.configureProperties (and 
ClassAdaptor)
-----------------------------------------------------------------------------------------

         Key: HIVEMIND-172
         URL: http://issues.apache.org/jira/browse/HIVEMIND-172
     Project: HiveMind
        Type: Improvement
  Components: library  
    Versions: 1.1    
    Reporter: Leonardo Quijano Vincenzi
    Priority: Minor


Recently I filled an issue in Tapestry for NumberTranslator, that it didn't 
allow for the comma (",") to be specified in the initializer. Turns out there's 
no way of escaping this character, as StringTokenizer is used on hivemind-lib 
to separate the characters.

http://issues.apache.org/jira/browse/TAPESTRY-887

This can be fixed in PropertyUtils / ClassAdaptor by adding a filter to this:

        StringTokenizer tokenizer = new StringTokenizer(initializer, ",");

        while (tokenizer.hasMoreTokens())
        {
            configurePropertyFromToken(target, tokenizer.nextToken());
        }

It's possible to iterate over the tokenizer and check if the last character of 
a token is "\", skipping the delimiter in that case.



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to