com.github.fge.grappa.debugger.mainwindow.MainWindowView 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.mainwindow;
import com.github.fge.grappa.debugger.csvtrace.CsvTracePresenter;
import com.github.fge.grappa.debugger.model.ParseInfo;
import com.github.fge.grappa.debugger.model.db.DbLoadStatus;
import javax.annotation.Nullable;
import java.nio.file.Path;
public interface MainWindowView
{
@Nullable
Path chooseFile();
void setWindowTitle(String windowTitle);
void showError(String header, String message, Throwable throwable);
void setLabelText(String text);
void attachTrace(CsvTracePresenter presenter);
void reportProgress(DbLoadStatus status, ParseInfo info);
void initLoad();
void loadComplete();
void loadAborted();
}