use of com.servoy.j2db.util.docvalidator.UpperCaseDocumentValidator in project servoy-client by Servoy.
the class DataField method installFormat.
public void installFormat(ComponentFormat componentFormat) {
fp = componentFormat.parsedFormat;
this.dataType = componentFormat.uiType;
this.displayFormat = null;
this.editFormat = null;
editorDocument.clearValidators();
boolean emptyCustom = (list instanceof CustomValueList) && !(list instanceof GlobalMethodValueList) && list.getSize() == 0;
if (!fp.isEmpty() && (list == null || (!list.hasRealValues() && !emptyCustom))) {
displayFormat = fp.getDisplayFormat();
editFormat = fp.getEditFormat();
if (fp.getMaxLength() != null && fp.getMaxLength().intValue() > 0) {
editorDocument.setValidator(MAX_LENGTH_VALIDATOR, new LengthDocumentValidator(fp.getMaxLength().intValue()));
}
if (fp.isAllLowerCase()) {
// $NON-NLS-1$
editorDocument.setValidator("LowerCaseDocumentValidator", new LowerCaseDocumentValidator());
TextFormatter display = new TextFormatter();
TextFormatter edit = new TextFormatter();
setFormatterFactory(new EditingFixedDefaultFormatterFactory(display, display, edit, edit));
} else if (fp.isAllUpperCase()) {
// $NON-NLS-1$
editorDocument.setValidator("UpperCaseDocumentValidator", new UpperCaseDocumentValidator());
TextFormatter display = new TextFormatter();
TextFormatter edit = new TextFormatter();
setFormatterFactory(new EditingFixedDefaultFormatterFactory(display, display, edit, edit));
} else if (fp.isNumberValidator()) {
// $NON-NLS-1$
editorDocument.setValidator("NumberDocumentValidator", new NumberDocumentValidator());
TextFormatter display = new TextFormatter();
TextFormatter edit = new TextFormatter();
setFormatterFactory(new EditingFixedDefaultFormatterFactory(display, display, edit, edit));
} else {
int maxLength = fp.getMaxLength() == null ? -1 : fp.getMaxLength().intValue();
// if there is no display format, but the max length is set, then generate a display format.
if (maxLength != -1 && (displayFormat == null || displayFormat.length() == 0)) {
// if this is just a text type textfield then just set those formatters (the max length is already set)
if (Column.mapToDefaultType(dataType) == IColumnTypes.TEXT) {
TextFormatter display = new TextFormatter();
TextFormatter edit = new TextFormatter();
setFormatterFactory(new EditingFixedDefaultFormatterFactory(display, display, edit, edit));
} else {
char[] chars = new char[maxLength];
for (int i = 0; i < chars.length; i++) chars[i] = '#';
displayFormat = new String(chars);
}
}
if (displayFormat != null) {
if (editFormat == null)
editFormat = displayFormat;
try {
JFormattedTextField.AbstractFormatter displayFormatter = null;
JFormattedTextField.AbstractFormatter editFormatter = null;
switch(Column.mapToDefaultType(dataType)) {
case IColumnTypes.NUMBER:
// example: $#,###.##
displayFormatter = new NullNumberFormatter(new RoundHalfUpDecimalFormat(displayFormat, application.getLocale()));
editFormatter = new NullNumberFormatter(new RoundHalfUpDecimalFormat(editFormat, application.getLocale()), maxLength);
setFormatterFactory(new EditingFixedDefaultFormatterFactory(displayFormatter, displayFormatter, editFormatter, editFormatter));
break;
case IColumnTypes.INTEGER:
// example: $#,###.##
displayFormatter = new NullNumberFormatter(new RoundHalfUpDecimalFormat(displayFormat, application.getLocale()));
editFormatter = new NullNumberFormatter(new RoundHalfUpDecimalFormat(editFormat, application.getLocale()), maxLength);
setFormatterFactory(new EditingFixedDefaultFormatterFactory(displayFormatter, displayFormatter, editFormatter, editFormatter));
break;
case IColumnTypes.DATETIME:
boolean mask = fp.isMask();
char placeHolder = fp.getPlaceHolderCharacter();
if (mask)
editFormat = displayFormat;
displayFormatter = new NullDateFormatter(new StateFullSimpleDateFormat(displayFormat, false));
editFormatter = new NullDateFormatter(new StateFullSimpleDateFormat(editFormat, Boolean.TRUE.equals(UIUtils.getUIProperty(this, IApplication.DATE_FORMATTERS_LENIENT, Boolean.TRUE))), !mask);
if (mask) {
editFormatter = ((NullDateFormatter) editFormatter).getMaskFormatter(placeHolder);
} else {
// date formats are default in override mode
setCaret(getOvertypeCaret());
}
// example: MM/dd/yyyy
setFormatterFactory(new EditingFixedDefaultFormatterFactory(displayFormatter, displayFormatter, editFormatter));
break;
default:
displayFormatter = new ValueListMaskFormatter(displayFormat, true);
editFormatter = new ValueListMaskFormatter(displayFormat, false);
if (fp.isRaw()) {
((ServoyMaskFormatter) editFormatter).setValueContainsLiteralCharacters(false);
((ServoyMaskFormatter) displayFormatter).setValueContainsLiteralCharacters(false);
}
if (fp.getAllowedCharacters() != null) {
((ServoyMaskFormatter) editFormatter).setValidCharacters(fp.getAllowedCharacters());
((ServoyMaskFormatter) displayFormatter).setValidCharacters(fp.getAllowedCharacters());
}
if (editFormat != null) {
if (editFormat.length() == 1) {
((ServoyMaskFormatter) editFormatter).setPlaceholderCharacter(editFormat.charAt(0));
} else {
((ServoyMaskFormatter) editFormatter).setPlaceholder(editFormat);
}
}
setFormatterFactory(new EditingFixedDefaultFormatterFactory(displayFormatter, displayFormatter, editFormatter));
// format overrules max length check
editorDocument.setValidator(MAX_LENGTH_VALIDATOR, new LengthDocumentValidator(0));
break;
}
} catch (Exception ex) {
Debug.error(ex);
}
}
}
} else // for text fields
{
TextFormatter display = new TextFormatter();
TextFormatter edit = new TextFormatter();
setFormatterFactory(new EditingFixedDefaultFormatterFactory(display, display, edit, edit));
}
if (maxLength >= 0 && editorDocument.getValidator(MAX_LENGTH_VALIDATOR) == null) {
editorDocument.setValidator(MAX_LENGTH_VALIDATOR, new LengthDocumentValidator(maxLength));
}
}
Aggregations