use of com.servoy.j2db.util.RoundHalfUpDecimalFormat in project servoy-client by Servoy.
the class WebDataField method getConverter.
/**
* @see wicket.Component#getConverter()
*/
@SuppressWarnings("nls")
@Override
public IConverter getConverter(Class<?> cls) {
if (converter != null)
return converter;
int mappedType = Column.mapToDefaultType(dataType);
String displayFormat = parsedFormat.getDisplayFormat();
if (list == null && mappedType == IColumnTypes.TEXT) {
converter = getTextConverter(parsedFormat, getLocale(), getName(), getDataProviderID());
if (converter == null) {
converter = super.getConverter(cls);
}
} else if (displayFormat == null && list == null) {
converter = super.getConverter(cls);
} else if (mappedType == IColumnTypes.DATETIME) {
boolean lenient = Boolean.TRUE.equals(UIUtils.getUIProperty(this.getScriptObject(), application, IApplication.DATE_FORMATTERS_LENIENT, Boolean.TRUE));
StateFullSimpleDateFormat displayFormatter = new StateFullSimpleDateFormat(displayFormat, null, application.getLocale(), lenient);
if (!parsedFormat.isMask() && parsedFormat.getEditFormat() != null) {
StateFullSimpleDateFormat editFormatter = new StateFullSimpleDateFormat(parsedFormat.getEditFormat(), null, application.getLocale(), lenient);
converter = new FormatConverter(this, eventExecutor, displayFormatter, editFormatter, parsedFormat);
} else {
converter = new FormatConverter(this, eventExecutor, displayFormatter, parsedFormat);
}
} else if ((mappedType == IColumnTypes.INTEGER || mappedType == IColumnTypes.NUMBER) && (list == null || !list.hasRealValues())) {
int maxLength = parsedFormat.getMaxLength() == null ? -1 : parsedFormat.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)) {
char[] chars = new char[maxLength];
for (int i = 0; i < chars.length; i++) chars[i] = '#';
displayFormat = new String(chars);
}
if (displayFormat != null) {
RoundHalfUpDecimalFormat displayFormatter = new RoundHalfUpDecimalFormat(displayFormat, application.getLocale());
if (parsedFormat.getEditFormat() != null) {
RoundHalfUpDecimalFormat editFormatter = new RoundHalfUpDecimalFormat(parsedFormat.getEditFormat(), application.getLocale());
converter = new FormatConverter(this, eventExecutor, displayFormatter, editFormatter, parsedFormat);
} else {
converter = new FormatConverter(this, eventExecutor, displayFormatter, parsedFormat);
}
}
}
if (list != null) {
if (converter == null && mappedType == IColumnTypes.TEXT && list instanceof GlobalMethodValueList) {
converter = getTextConverter(parsedFormat, getLocale(), getName(), getDataProviderID());
}
converter = new ValuelistValueConverter(list, this, converter);
}
if (converter == null)
converter = super.getConverter(cls);
return converter;
}
use of com.servoy.j2db.util.RoundHalfUpDecimalFormat in project servoy-client by Servoy.
the class DataComboBox method installFormat.
public void installFormat(ComponentFormat componentFormat) {
this.dataType = componentFormat.uiType;
if (isEditable()) {
FormattedComboBoxEditor ed = (FormattedComboBoxEditor) getEditor();
ed.setFormat(componentFormat);
}
if (!componentFormat.parsedFormat.isEmpty()) {
String displayFormat = componentFormat.parsedFormat.getDisplayFormat();
try {
switch(Column.mapToDefaultType(dataType)) {
case IColumnTypes.NUMBER:
format = new RoundHalfUpDecimalFormat(displayFormat, application.getLocale());
break;
case IColumnTypes.INTEGER:
format = new RoundHalfUpDecimalFormat(displayFormat, application.getLocale());
break;
case IColumnTypes.DATETIME:
format = new StateFullSimpleDateFormat(displayFormat, Boolean.TRUE.equals(UIUtils.getUIProperty(this, IApplication.DATE_FORMATTERS_LENIENT, Boolean.TRUE)));
// format = new SimpleDateFormat(formatString);
break;
default:
// TODO Jan/Johan what to do here? Should we create our own MaskFormatter? Where we can insert a mask??
break;
}
} catch (Exception ex) {
Debug.error(ex);
}
}
}
use of com.servoy.j2db.util.RoundHalfUpDecimalFormat 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