com.github.fge.grappa.debugger.MainWindowFactory 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;
import com.github.fge.grappa.debugger.mainwindow.MainWindowPresenter;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
public interface MainWindowFactory
{
@Nullable
MainWindowPresenter createWindow();
void close(@Nonnull MainWindowPresenter presenter);
}