Package com.volantis.synergetics.reporting.config

Examples of com.volantis.synergetics.reporting.config.GenericHandlerParam


     * @return a Map of parameters from the provided {@link GenericHandler}
     */
    private Map buildGenericMap(GenericHandler handler) {
        Map result = new HashMap();
        for (int i = 0; i < handler.sizeReportList(); i++) {
            GenericHandlerParam param = handler.getGenericHandlerParam(i);
            if (param != null) {
                result.put(param.getName(), param.getValue());
            }
        }
        return result;
    }
View Full Code Here

TOP

Related Classes of com.volantis.synergetics.reporting.config.GenericHandlerParam

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.