use of com.cubrid.cubridmanager.ui.replication.editor.model.ArrowConnection in project cubrid-manager by CUBRID.
the class ContainerNodePart method getModelTargetConnections.
/**
* @see com.cubrid.cubridmanager.ui.replication.editor.parts.NodePart#getModelTargetConnections()
* @return list
*/
protected List<ArrowConnection> getModelTargetConnections() {
List<ArrowConnection> list = new ArrayList<ArrowConnection>();
list.addAll(getContainerNode().getIncomingConnections());
for (Iterator<LeafNode> iter = getContainerNode().getChildNodeList().iterator(); iter.hasNext(); ) {
LeafNode node = (LeafNode) iter.next();
list.addAll(node.getIncomingConnections());
}
return list;
}
Aggregations