com.github.fge.grappa.debugger.javafx.JavafxDisplay 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.javafx;
import com.github.fge.grappa.internal.NonFinalForTesting;
import javax.annotation.ParametersAreNonnullByDefault;
import java.util.Objects;
@ParametersAreNonnullByDefault
public abstract class JavafxDisplay
{
protected P presenter;
@NonFinalForTesting
public void setPresenter(final P presenter)
{
this.presenter = Objects.requireNonNull(presenter);
init();
}
public abstract void init();
}