Uses of Class
xdevs.core.modeling.Port
-
Packages that use Port Package Description xdevs.core.examples.devstone xdevs.core.examples.dynamic xdevs.core.examples.efp xdevs.core.modeling xdevs.core.simulation -
-
Uses of Port in xdevs.core.examples.devstone
Fields in xdevs.core.examples.devstone declared as Port Modifier and Type Field Description Port<Integer>
DevStone. iIn
DEVStone input portPort<Integer>
DevStoneAtomic. iIn
Input portPort<Integer>
DevStoneCoupledHO. iInAux
Additional input portPort<Integer>
DevStoneCoupledHOmem. iInAux
Deprecated.Additional input portPort<Integer>
DevStoneCoupledHOmod. iInAux
Additional input portPort<Integer>
DevStone. oOut
DEVStone output portPort<Integer>
DevStoneAtomic. oOut
Output portPort<Integer>
DevStoneGenerator. oOut
Output portPort<Integer>
DevStoneCoupledHO. oOutAux
Additional output port -
Uses of Port in xdevs.core.examples.dynamic
Fields in xdevs.core.examples.dynamic declared as Port Modifier and Type Field Description Port<Job>
Machine. iJob
Port<Job>
Machine. oJobIgnored
Port<Job>
Machine. oJobSolved
-
Uses of Port in xdevs.core.examples.efp
Fields in xdevs.core.examples.efp declared as Port Modifier and Type Field Description Port<Job>
Transducer. iArrived
Input port for arrived jobs.protected Port<Job>
Ef. iIn
Input port.protected Port<Job>
Processor. iIn
Input port.Port<Job>
Transducer. iSolved
Input port for solved jobs.Port<Job>
Generator. iStop
protected Port<Job>
Ef. oOut
Output port.Port<Job>
Generator. oOut
protected Port<Job>
Processor. oOut
Output port.Port<Job>
Transducer. oOut
Output port to finish the simulation. -
Uses of Port in xdevs.core.modeling
Fields in xdevs.core.modeling declared as Port Modifier and Type Field Description protected Port<E>
Coupling. portFrom
The source port of the coupling.protected Port<E>
Coupling. portTo
The destination port of the coupling.Fields in xdevs.core.modeling with type parameters of type Port Modifier and Type Field Description protected ArrayList<Port<?>>
Component. inPorts
The list of input ports of the component.protected ArrayList<Port<?>>
Component. outPorts
The list of output ports of the component.Methods in xdevs.core.modeling that return Port Modifier and Type Method Description Port<?>
Component. getInPort(String portName)
This function has been designed to obtain an input port of the component.Port<?>
Component. getOutPort(String portName)
This function has been designed to obtain an output port of the component.Port<E>
Coupling. getPortFrom()
Returns the source port of the coupling.Port<E>
Coupling. getPortTo()
Returns the destination port of the coupling.Methods in xdevs.core.modeling that return types with arguments of type Port Modifier and Type Method Description Collection<Port<?>>
Component. getInPorts()
This function has been designed to obtain the list of input ports of the component.Collection<Port<?>>
Component. getOutPorts()
This function has been designed to obtain the list of output ports of the component.Methods in xdevs.core.modeling with parameters of type Port Modifier and Type Method Description void
Coupled. addCoupling(Component cFrom, Port<?> pFrom, Component cTo, Port<?> pTo)
Deprecated.This method add a connection to the DEVS component.void
Coupled. addCoupling(Port<?> pFrom, Port<?> pTo)
This member adds a connection between ports pFrom and pTovoid
Component. addInPort(Port<?> port)
This function has been designed to add an input port to the component.void
Coupled. addInPort(Port<?> port)
This method adds a input port to the DEVS component.void
Component. addOutPort(Port<?> port)
This function has been designed to add an output port to the component.void
Coupled. addOutPort(Port<?> port)
This method adds a output port to the DEVS component.Constructors in xdevs.core.modeling with parameters of type Port Constructor Description Coupling(Port<E> portFrom, Port<E> portTo)
Constructor of the coupling. -
Uses of Port in xdevs.core.simulation
Methods in xdevs.core.simulation with parameters of type Port Modifier and Type Method Description void
Controller. simInject(double e, Port<Object> port, Object value)
Injects a single value into the port "port", calling the transition function.void
Controller. simInject(double e, Port<Object> port, Collection<Object> values)
Injects a value into the port "port", calling the transition function.void
Controller. simInject(Port<Object> port, Object value)
Injects a single value into the port "port", calling the transition function.void
Controller. simInject(Port<Object> port, Collection<Object> values)
Injects a value into the port "port", calling the transition function.void
Coordinator. simInject(double e, Port<Object> port, Object value)
Injects a single value in the given input port with elapsed time e.void
Coordinator. simInject(double e, Port<Object> port, Collection<Object> values)
Injects a value into the port "port", calling the transition function.void
Coordinator. simInject(Port<Object> port, Object value)
Injects a single value in the given input port with elapsed time e equal to 0.void
Coordinator. simInject(Port<Object> port, Collection<Object> values)
Injects a set of values in the given input port with elapsed time e equal to 0.
-