* @param jboAttribute
* @param localeContext
*/
public AttributeDescriptorImpl(final AttributeDef jboAttribute, final LocaleContext localeContext) {
this.name = jboAttribute.getName();
final AttributeHints hints = jboAttribute.getUIHelper();
this.label = hints.getLabel(localeContext);
this.type = jboAttribute.getJavaType();
//Create the standard support for the following operators.
if (isString()) {
supportedOperators.add(new OperatorImpl(BEGINT_MET, JboCompOper.OPER_STARTS_WITH, 1));