Package net.sourceforge.cobertura.coveragedata

Examples of net.sourceforge.cobertura.coveragedata.SourceFileData


        buildSourceFileDataHelpers();
    }

    void buildSourceFileDataHelpers() {
        for (Object o : getData().getSourceFiles()) {
            SourceFileData sfd = (SourceFileData) o;
            SourceFileData dsfd = null;
            if (getSamePackageData() != null) {
                for (Object osfd : getSamePackageData().getSourceFiles()) {
                    SourceFileData xsfd = (SourceFileData) osfd;
                    if (xsfd.getName().equals(sfd.getName())) {
                        dsfd = xsfd;
                        break;
                    }
                }
            }
View Full Code Here


                            }
                            result.put("children", children);
                        }
                        Double complexity = null;
                        if (x instanceof SourceFileDataPair) {
                            SourceFileData sfd = (SourceFileData) x.getData();
                            complexity = complexityCalc
                                    .getCCNForSourceFile(sfd);
                        }
                        if (x instanceof PackageDataPair) {
                            PackageData pd = (PackageData) x.getData();
View Full Code Here

        @Override
        boolean lacksInstrumentationInfo(SourceFileData sfd) {

            if (markOneAsLackingInstrumentation) {
                sfd = new SourceFileData(sfd.getName()) {
                    private static final long serialVersionUID = 1L;

                    // code coverage aggravation is the reason for this
                    // arabesque
                    public boolean containsInstrumentationInfo() {
View Full Code Here

TOP

Related Classes of net.sourceforge.cobertura.coveragedata.SourceFileData

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.