final String lastPart = (String)parts.get( numParts - 1 );
int numPrefixParts = 0;
// If the part preceeding the value name is prefix
// then
PrefixedValueSupport prop_support = new PrefixedValueSupport(null);
final String dottedName = DottedName.toString(mDottedName.getDomain(),
mDottedName.getScope(),
mDottedName.getParts(), false);
final boolean isPrefixed = prop_support.isPrefixedValueDottedName(dottedName);
if ( isPrefixed )
{
mValueName = prop_support.getPrefixedValueName(dottedName, true);
numPrefixParts = numParts - 2;
}
else
{
// it's a regular value name; does not include prefix