fr.jcgay.maven.profiler.reporting.template.EntryAndTime Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maven-profiler Show documentation
Show all versions of maven-profiler Show documentation
Log Maven mojos execution time
package fr.jcgay.maven.profiler.reporting.template;
import com.google.common.base.Stopwatch;
public class EntryAndTime {
private final T entry;
private final Stopwatch time;
public EntryAndTime(T entry, Stopwatch time) {
this.entry = entry;
this.time = time;
}
public T getEntry() {
return entry;
}
public Stopwatch getTime() {
return time;
}
public String getMillisTimeStamp() {
return String.valueOf(time.elapsedMillis()) + " ms";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy