All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fge.grappa.debugger.mainwindow.MainWindowView Maven / Gradle / Ivy

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy