Uses of Class
de.cau.cs.kieler.klay.layered.graph.LPort

Packages that use LPort
de.cau.cs.kieler.klay.layered Base package of the layered layouter. 
de.cau.cs.kieler.klay.layered.graph Basic structures for the layered layouter. 
de.cau.cs.kieler.klay.layered.p3order Phase 3 - crossing minimization by node reordering. 
de.cau.cs.kieler.klay.layered.p5edges Phase 5 - edge routing and horizontal node placement. 
de.cau.cs.kieler.klay.layered.properties This package contains classes defining layout properties for KLay Layered. 
 

Uses of LPort in de.cau.cs.kieler.klay.layered
 

Methods in de.cau.cs.kieler.klay.layered that return LPort
static LPort Util.provideCollectorPort(LNode node, PortType type, PortSide side)
          Return a collector port of given type, creating it if necessary.
 

Uses of LPort in de.cau.cs.kieler.klay.layered.graph
 

Methods in de.cau.cs.kieler.klay.layered.graph that return LPort
 LPort LEdge.getSource()
          Returns the source port.
 LPort LEdge.getTarget()
          Returns the target port.
 

Methods in de.cau.cs.kieler.klay.layered.graph that return types with arguments of type LPort
 Iterable<LPort> LPort.getConnectedPorts()
          Returns an iterable over all connected ports, both predecessors and successors.
 List<LPort> LNode.getPorts()
          Returns the list of ports of this node.
 Iterable<LPort> LNode.getPorts(PortSide side)
          Returns an iterable for all ports of given side.
 Iterable<LPort> LNode.getPorts(PortType portType)
          Returns an iterable for all ports of given type.
 Iterable<LPort> LNode.getPorts(PortType portType, PortSide side)
          Returns an iterable for all ports of a given type and side.
 Iterable<LPort> LPort.getPredecessorPorts()
          Returns an iterable over all the port's predecessor ports.
 Iterable<LPort> LPort.getSuccessorPorts()
          Returns an iterable over all the port's successor ports.
 

Methods in de.cau.cs.kieler.klay.layered.graph with parameters of type LPort
 boolean LPort.TypeCondition.evaluate(LPort object)
          Evaluate this condition on the given object.
 boolean LPort.SideCondition.evaluate(LPort object)
          Evaluate this condition on the given object.
 void LEdge.setSource(LPort source)
          Sets the source port of this edge and adds itself to the port's list of edges.
 void LEdge.setTarget(LPort target)
          Sets the target port of this edge and adds itself to the port's list of edges.
 

Uses of LPort in de.cau.cs.kieler.klay.layered.p3order
 

Methods in de.cau.cs.kieler.klay.layered.p3order that return types with arguments of type LPort
protected  List<LPort> AbstractCrossingMinimizer.getSortedInputPorts(LNode node)
          Returns a list of input ports, beginning at the top right port of the eastern side, going clockwise.
 List<LPort> IPortDistributor.getSortedInputPorts(LNode node)
          Returns a list of input ports, beginning at the top right port of the eastern side, going clockwise.
 List<LPort> NodeRelativePortDistributor.getSortedInputPorts(LNode node)
          Returns a list of input ports, beginning at the top right port of the eastern side, going clockwise.
 

Uses of LPort in de.cau.cs.kieler.klay.layered.p5edges
 

Methods in de.cau.cs.kieler.klay.layered.p5edges that return LPort
 LPort LongEdge.getTarget()
           
 

Methods in de.cau.cs.kieler.klay.layered.p5edges with parameters of type LPort
 double OrthogonalRoutingGenerator.IRoutingDirectionStrategy.getPortPositionOnHyperNode(LPort port)
          Returns the port's position on a hyper edge axis.
 double OrthogonalRoutingGenerator.WestToEastRoutingStrategy.getPortPositionOnHyperNode(LPort port)
          Returns the port's position on a hyper edge axis.
 double OrthogonalRoutingGenerator.NorthToSouthRoutingStrategy.getPortPositionOnHyperNode(LPort port)
          Returns the port's position on a hyper edge axis.
 double OrthogonalRoutingGenerator.SouthToNorthRoutingStrategy.getPortPositionOnHyperNode(LPort port)
          Returns the port's position on a hyper edge axis.
 

Uses of LPort in de.cau.cs.kieler.klay.layered.properties
 

Fields in de.cau.cs.kieler.klay.layered.properties with type parameters of type LPort
static IProperty<LPort> Properties.COMMENT_CONN_PORT
          The port of a node that originally connected a comment box with that node.
static IProperty<LPort> Properties.LONG_EDGE_SOURCE
          the source port of a long edge before it was broken into multiple segments.
static IProperty<LPort> Properties.LONG_EDGE_TARGET
          the target port of a long edge before it was broken into multiple segments.