com.github.fge.grappa.debugger.model.db.PerClassStatistics Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grappa-debugger Show documentation
Show all versions of grappa-debugger Show documentation
GUI application to debug grappa parsers
The newest version!
package com.github.fge.grappa.debugger.model.db;
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;
}
}