org.bidib.wizard.config.DebugConsoleControllerFactory 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.mvc.nodedebug.controller.DebugConsoleController;
public interface DebugConsoleControllerFactory {
/**
* Create the DebugConsoleController instance.
*
* @return the DebugConsoleController instance
*/
DebugConsoleController createController();
}