org.bidib.wizard.config.MainViewFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-client Show documentation
Show all versions of bidibwizard-client Show documentation
jBiDiB BiDiB Wizard Client Application POM
package org.bidib.wizard.config;
import org.bidib.wizard.common.service.SettingsService;
import org.bidib.wizard.mvc.main.view.MainView;
public interface MainViewFactory {
/**
* Create the MainView.
*
* @param settingsService
* the settings service
* @param applicationContext
* the application context
* @return the main view
*/
MainView create(final SettingsService settingsService);
}