Package org.erlide.cover.views.model

Examples of org.erlide.cover.views.model.LineResult


        while (it.hasNext()) {
            final OtpErlangTuple res = (OtpErlangTuple) it.next();
            final int num = Integer.parseInt(res.elementAt(1).toString());
            final int calls = Integer.parseInt(res.elementAt(2).toString());
            final LineResult lineRes = new LineResult(num, calls);

            stats.addLine(lineRes);

        }
View Full Code Here

TOP

Related Classes of org.erlide.cover.views.model.LineResult

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.