dk.cooldev.timing.Mark Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of easytiming Show documentation
Show all versions of easytiming Show documentation
Easy way to measure your code
The newest version!
package dk.cooldev.timing;
/**
* Created by cvwj on 07/08/14.
*/
public class Mark {
public String name;
public long duration;
public String toString() {
return String.format("{\"name\":\"%s\", \"duration\":%s}", name, duration);
}
}