All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vmlens.report.LoopToDataRaceCount Maven / Gradle / Ivy

The newest version!
package com.vmlens.report;

public class LoopToDataRaceCount {


    private final String loopName;
    private final int dataRaceCount;

    public LoopToDataRaceCount(String loopName, int dataRaceCount) {
        this.loopName = loopName;
        this.dataRaceCount = dataRaceCount;
    }

    public String loopName() {
        return loopName;
    }

    public int dataRaceCount() {
        return dataRaceCount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy