Package org.rhq.core.gui.converter

Examples of org.rhq.core.gui.converter.PropertySimpleValueConverter


    private static void addValidatorsAndConverter(UIInput input, PropertyDefinitionSimple propertyDefinitionSimple,
        boolean readOnly,TemplateEngine templateEngine ) {
        if (!readOnly) {
            input.setRequired(propertyDefinitionSimple.isRequired());
            input.addValidator(new PropertySimpleValueValidator(propertyDefinitionSimple));
            input.setConverter(new PropertySimpleValueConverter(templateEngine));
        }
    }
View Full Code Here

TOP

Related Classes of org.rhq.core.gui.converter.PropertySimpleValueConverter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.