Package org.auraframework.util.perfomance.PTestGoogleChart

Examples of org.auraframework.util.perfomance.PTestGoogleChart.ChartPoint


        String[] metrics = text.trim().split("\\s");
        for (String metric : metrics) {
            String[] pieces = metric.split(":");
            String metricName = pieces[0];
            Long metricValue = Long.valueOf(pieces[1]);
            metricsMap.add(new ChartPoint(metricName, metricValue));
        }

        return metricsMap;
    }
View Full Code Here

TOP

Related Classes of org.auraframework.util.perfomance.PTestGoogleChart.ChartPoint

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.