All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.datalking.common.convert.editor.LocaleEditor Maven / Gradle / Ivy

The newest version!
package com.github.datalking.common.convert.editor;

import com.github.datalking.util.StringUtils;

import java.beans.PropertyEditorSupport;

public class LocaleEditor extends PropertyEditorSupport {

    @Override
    public void setAsText(String text) {
//		setValue(StringUtils.parseLocaleString(text));
        setValue(text);
    }

    @Override
    public String getAsText() {
        Object value = getValue();
        return (value != null ? value.toString() : "");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy