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

com.github.fge.grappa.debugger.javafx.JavafxDisplay Maven / Gradle / Ivy

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy