Skip to content

Instantly share code, notes, and snippets.

@fge
Created March 4, 2015 08:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fge/be0b6cbe9101717c23d0 to your computer and use it in GitHub Desktop.
Save fge/be0b6cbe9101717c23d0 to your computer and use it in GitHub Desktop.
public final class PerClassStatistics
{
private final String className;
private final int nrRules;
private final int nrCalls;
public PerClassStatistics(final String className, final int nrRules,
final int nrCalls)
{
this.className = className;
this.nrRules = nrRules;
this.nrCalls = nrCalls;
}
public String getClassName()
{
return className;
}
public int getNrRules()
{
return nrRules;
}
public int getNrCalls()
{
return nrCalls;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment