Package org.jahia.ajax.gwt.client.data

Examples of org.jahia.ajax.gwt.client.data.GWTJahiaValueDisplayBean


                }
            }
            if (listValues != null) {
                for (ChoiceListValue choiceListValue : listValues) {
                    try {
                        final GWTJahiaValueDisplayBean displayBean =
                                new GWTJahiaValueDisplayBean(choiceListValue.getValue().getString(),
                                        choiceListValue.getDisplayName());
                        final Map<String, Object> props = choiceListValue.getProperties();
                        if (props != null) {
                            for (Map.Entry<String, Object> objectEntry : props.entrySet()) {
                                if (objectEntry.getKey() == null || objectEntry.getValue() == null) {
                                    logger.error("Null value : " + objectEntry.getKey() + " / " +
                                            objectEntry.getValue());
                                } else {
                                    displayBean.set(objectEntry.getKey(), objectEntry.getValue());
                                }
                            }
                        }
                        displayBeans.add(displayBean);
                    } catch (RepositoryException e) {
View Full Code Here

TOP

Related Classes of org.jahia.ajax.gwt.client.data.GWTJahiaValueDisplayBean

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.