Uses of Interface
org.xmloperator.lambda.net.model.Port

Packages that use Port
org.xmloperator.lambda.net.model   
org.xmloperator.lambda.net.util   
 

Uses of Port in org.xmloperator.lambda.net.model
 

Methods in org.xmloperator.lambda.net.model that return Port
 Port PortStack.pop()
          Return the Port at the top and pop the stack.
 Port PortStack.top()
          Return the Port at the top or null is the stack is empty.
 Port PortStack.get(int index)
          Return the Port at a given root relative index in the stack.
 Port Port.getConnectedPort()
          Returns the connected Port if any, null elsewhere.
 Port Operator.getPort(int number)
          Returns the Port of this Operator, with the given number.
 Port Operator.getPort0()
          Returns the principal Port of this Operator or null if it doesn't exist.
 Port Operator.getPort1()
          Returns the first auxiliary Port of this Operator or null if it doesn't exist.
 Port Operator.getPort2()
          Returns the second auxiliary Port of this Operator or null if it doesn't exist.
 Port Eraser.getPort()
          Returns its Port.
 Port Duplicator.getInput1()
          Returns its first input Port (the direction being not inversed).
 Port Duplicator.getInput2()
          Returns its second input Port (the direction being not inversed).
 Port Duplicator.getOutput()
          Returns its output Port (the direction being not inversed).
 Port Delimiter.getInput()
          Returns its input Port (direction being not inversed).
 Port Delimiter.getBody()
          Returns its body Port.
 Port Applicator.getInput()
          Returns its input Port.
 Port Applicator.getBody()
          Returns its body Port.
 Port Applicator.getArgument()
          Returns its argument Port.
 Port Abstractor.getInput()
          Returns its input Port.
 Port Abstractor.getBody()
          Returns its body Port.
 Port Abstractor.getBind()
          Returns its bind Port.
 

Methods in org.xmloperator.lambda.net.model with parameters of type Port
 void PortStack.push(Port port)
          Push a Port on the top of the stack.
 void PortStack.replace(int index, Port port)
          Replace the Port at a given root relative index in the stack.
 boolean PortStack.contains(Port port)
          Returns true if this stack contains the given Port.
 boolean PortStack.remove(Port port)
          Removes a Port from this stack.
 void Port.connectTo(Port connectedPort)
          Connect this Port to a another Port.
 void ConnectionListener.notifyConnection(Port port1, Port port2)
          Notify a connection between two Ports.
 void ConnectionListener.notifyConnection(Port port1, Port port2)
          Notify a connection between two Ports.
 

Uses of Port in org.xmloperator.lambda.net.util
 

Methods in org.xmloperator.lambda.net.util that return Port
 Port WalkingContext.getCurrentPort()
          Returns the currently leaved Port.