use of jmri.jmrix.jmriclient.JMRIClientTrafficController in project JMRI by JMRI.
the class JMRIClientComponentFactoryTest method setUp.
@Before
public void setUp() {
Log4JFixture.setUp();
JUnitUtil.resetInstanceManager();
tc = new JMRIClientTrafficController();
m = new JMRIClientSystemConnectionMemo();
m.setSystemPrefix("ABC");
}
use of jmri.jmrix.jmriclient.JMRIClientTrafficController in project JMRI by JMRI.
the class JMRIClientMenuTest method setUp.
@Before
public void setUp() {
Log4JFixture.setUp();
JUnitUtil.resetInstanceManager();
tc = new JMRIClientTrafficController();
m = new JMRIClientSystemConnectionMemo();
m.setSystemPrefix("ABC");
}
use of jmri.jmrix.jmriclient.JMRIClientTrafficController in project JMRI by JMRI.
the class NetworkDriverAdapter method configure.
/**
* set up all of the other objects to operate with an JMRI server connected
* to this port
*/
@Override
public void configure() {
// connect to the traffic controller
JMRIClientTrafficController control = new JMRIClientTrafficController();
control.connectPort(this);
this.getSystemConnectionMemo().setJMRIClientTrafficController(control);
this.getSystemConnectionMemo().configureManagers();
}
use of jmri.jmrix.jmriclient.JMRIClientTrafficController in project JMRI by JMRI.
the class PacketGenFrameTest method setUp.
@Before
public void setUp() {
Log4JFixture.setUp();
JUnitUtil.resetInstanceManager();
tc = new JMRIClientTrafficController();
}
Aggregations