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

jpaoletti.jpm.converter.ShowLocalizedStringConverter Maven / Gradle / Ivy

The newest version!
package jpaoletti.jpm.converter;

import jpaoletti.jpm.core.PMContext;

public class ShowLocalizedStringConverter extends Converter {

    @Override
    public String visualize(PMContext ctx) throws ConverterException {
        final String s = getPm().message((String) ctx.getFieldValue());
        ctx.setFieldValue(s);
        return s;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy