Examples of SimpleValueSupport


Examples of org.jboss.metatype.api.values.SimpleValueSupport

     */
    protected static Map<String, String> formatPropertiesMap(Map<String, MetaValue> propertiesMap) {
        Map<String, String> formattedPropertiesMap = new HashMap<String, String>();
       
        for(String propertyName : propertiesMap.keySet()) {
            SimpleValueSupport propertyMetaValue = (SimpleValueSupport)propertiesMap.get(propertyName);
            String propertyStringValue = propertyMetaValue.getValue().toString();
            formattedPropertiesMap.put(propertyName, propertyStringValue);
        }
       
        return formattedPropertiesMap;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.