org.bidib.wizard.config.NetDebugControllerFactory 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.netdebug.controller.NetDebugController;
import com.vlsolutions.swing.docking.DockingDesktop;
public interface NetDebugControllerFactory {
/**
* Create the NetDebugController instance.
*
* @param desktop
* the desktop
* @return the NetDebugController instance
*/
NetDebugController createController(final DockingDesktop desktop);
}