com.github.fge.grappa.debugger.csvtrace.tabs.rules.RulesTabView 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.csvtrace.tabs.rules;
import com.github.fge.grappa.debugger.model.ParseInfo;
import com.github.fge.grappa.debugger.model.db.PerClassStatistics;
import com.github.fge.grappa.matchers.MatcherType;
import java.util.List;
import java.util.Map;
public interface RulesTabView
{
void displayParseInfo(ParseInfo info);
void displayTotalParseTime(long totalParseTime);
void displayMatchersByType(Map matchersByType);
void displayRules(List stats);
}