org.bidib.wizard.config.PtProgrammerControllerFactory 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 java.awt.Point;
import javax.swing.JFrame;
import org.bidib.wizard.api.model.NodeInterface;
import org.bidib.wizard.mvc.pt.controller.PtProgrammerController;
public interface PtProgrammerControllerFactory {
/**
* Create the PtProgrammer controller.
*
* @param node
* the node
* @param parent
* the parent frame
* @param location
* the location to show
* @return the initialized PtProgrammer controller
*/
PtProgrammerController createPtProgrammerController(final NodeInterface node, JFrame parent, Point location);
}