Package net.sourceforge.processdash.ev.ci.AbstractConfidenceInterval

Examples of net.sourceforge.processdash.ev.ci.AbstractConfidenceInterval.DataPoint


                if (task.getDateCompleted() != null)
                    interval.addDataPoint(task.getPlanValue(),
                        task.getActualDirectTime());

            } else if (item instanceof DataPoint) {
                DataPoint point = (DataPoint) item;
                interval.addDataPoint(point.x, point.y);
            }
        }
        interval.dataPointsComplete();
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.ev.ci.AbstractConfidenceInterval.DataPoint

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.