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

com.github.fge.grappa.debugger.MainWindowFactory Maven / Gradle / Ivy

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy