Strip of _ suffix in class transformation
-----------------------------------------

                 Key: TAPESTRY-2236
                 URL: https://issues.apache.org/jira/browse/TAPESTRY-2236
             Project: Tapestry
          Issue Type: Improvement
         Environment: Tapestry 5.0.11-SNAPSHOT
            Reporter: Adriaan Joubert


Hi,

our convention is to use an _ suffix for fields, rather than a prefix. Tapestry 
cannot naturally transform these field names where needed. Could you please 
change 

org.apache.tapestry.ioc.internal.util.InternalUtils.stripMemberPrefix(String 
memberName)

to strip an _ suffix as well. The following addition should do the job

       while (builder.length>0)
        {
            char ch = builder.charAt(builder.length-1);

            if (InternalUtils.NAME_PREFIX.indexOf(ch) < 0) break;

            builder.deleteCharAt(builder.length-1);
        }

Cheers,

Adriaan


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


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

Reply via email to