Description
HColumnDescriptor crrently requires of its family names that they be letters, digits, underscores or periods.
Character.isLetterOrDigit(b[i]) || b[i] == '_' || b[i] == '.'
It would be nice if it let rather more characters be used (personally, I'd like to use a hyphen!)