Uses of Class
at.jku.fim.datalinksimulation.layer1.wire.Wire

Packages that use Wire
at.jku.fim.datalinksimulation.genericdevices   
at.jku.fim.datalinksimulation.layer1.wire   
at.jku.fim.datalinksimulation.layer1.wire.damagedwire   
at.jku.fim.datalinksimulation.scenario   
 

Uses of Wire in at.jku.fim.datalinksimulation.genericdevices
 

Fields in at.jku.fim.datalinksimulation.genericdevices declared as Wire
private  Wire[] InterlinkingDevice.connectedWires
          reference to all connected wires, indexed by port number
 

Methods in at.jku.fim.datalinksimulation.genericdevices that return Wire
 Wire InterlinkingDevice.getWireInPort(int portNr)
           
 

Methods in at.jku.fim.datalinksimulation.genericdevices with parameters of type Wire
 void NetworkStation.bePlugged(Wire wire, int portNr)
           
 void InterlinkingDevice.bePlugged(Wire wire, int portNr)
           
 void NetworkStation.beUnplugged(Wire wire, int portNr)
           
 void InterlinkingDevice.beUnplugged(Wire wire, int portNr)
           
 int InterlinkingDevice.getPortOfWire(Wire wire)
           
 void NetworkStation.informAboutDataOnWire(Wire sender, RawData data)
          informAboutWireData
 void InterlinkingDevice.informAboutDataOnWire(Wire sender, RawData data)
           
 boolean InterlinkingDevice.isWireConnected(Wire wireToTest)
          Checks, if a specified wire is connected or not
 

Uses of Wire in at.jku.fim.datalinksimulation.layer1.wire
 

Subclasses of Wire in at.jku.fim.datalinksimulation.layer1.wire
 class StandardWire
          Title: OSI Simulation Framework This class implements a typical standard wire, connecting 2 devices.
 

Methods in at.jku.fim.datalinksimulation.layer1.wire with parameters of type Wire
 void WireConnector.bePlugged(Wire wire, int portNr)
          This method should only be called by Wires, which inform this WireConnector that they are connected.
 void WireConnector.beUnplugged(Wire wire, int portNr)
          This method should only be called by Wires, which inform this WireConnector that they are disconnected
 void WireConnector.informAboutDataOnWire(Wire sender, RawData data)
          This method is called whenever a data package is received by a subscribed wire.
 

Uses of Wire in at.jku.fim.datalinksimulation.layer1.wire.damagedwire
 

Subclasses of Wire in at.jku.fim.datalinksimulation.layer1.wire.damagedwire
 class DamagedWire
          Title: OSI Simulation Framework Copyright: (c) 2004-05 Company: FIM@JKU, www.fim.uni-linz.ac.at
 

Uses of Wire in at.jku.fim.datalinksimulation.scenario
 

Fields in at.jku.fim.datalinksimulation.scenario declared as Wire
private  Wire SystemScenarioModel.hub2hubWire
           
private  Wire SystemScenarioModel.hub2iHubWire
           
private  Wire SystemScenarioModel.station10Wire
           
private  Wire SystemScenarioModel.station11Wire
           
 

Methods in at.jku.fim.datalinksimulation.scenario that return Wire
 Wire SystemScenarioModel.getHub2hubWire()
           
 Wire SystemScenarioModel.getHub2iHubWire()
           
 Wire SystemScenarioModel.getStation10Wire()
           
 Wire SystemScenarioModel.getStation11Wire()