for (Node n : discreteNodeList) {
List<String> stateList = new ArrayList<String>(n.getStatesSize());
for (int i = 0; i < n.getStatesSize(); i++) {
stateList.add(n.getStateAt(i));
}
distributionPane.fillDiscreteParentStateSelection(n.getName(), stateList);
}
loadContinuousDistributionPaneValues(distributionPane, node.getCnNormalDistribution());
// Create the confirm action listener. Responsible for setting the distribution values.