org.bidib.wizard.api.model.connection.SimulationBidibConnection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
package org.bidib.wizard.api.model.connection;
import org.bidib.jbidibc.simulation.SimulatorNode;
public interface SimulationBidibConnection extends BidibConnection {
/**
* Get the simulator node.
*
* @param nodeAddress
* the node address
* @return the simulator node
*/
SimulatorNode getSimulator(String nodeAddress);
}