private void __generateDistanceMatrixList() {
this.__setDistanceMatrixList(new ArrayList<DistanceMatrix>());
for (int mi = 0, mEnd = this.getNMRShiftDB().getMoleculeSet().getMoleculeCount(); mi < mEnd; mi++) {
this.__setDistanceMatrixList().add(new DistanceMatrix(this.getNMRShiftDB().getMoleculeSet().getMolecule(mi)));
}
}