- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
for (ComplectationItemTO complectation : previewFullTO.getItemComplectations()) {
for (Map.Entry entry : complectation.getInstances().entrySet()) {
if (entry.getKey().equals(SoundData.SOUND_COMPLECTATION_NAME)) {
SoundData soundData = getComplectationSoundData(complectation.getId(), previewFullTO);
soundsMap.put(complectation.getId(), soundData);
}
}
}
private SoundData getComplectationSoundData(Long complectatiomId, PreviewFullTO previewFullTO) {
for (ComplectationItemTO complectationSound : previewFullTO.getItemComplectations()) {
if (complectationSound.getId().equals(complectatiomId)) {
for (Map.Entry entrySound : complectationSound.getInstances().entrySet()) {
if (entrySound.getKey().equals(SoundData.SOUND_LENGTH)) {
String soundLength = complectationSound.getInstances().get(SoundData.SOUND_LENGTH);
String soundData = complectationSound.getInstances().get(SoundData.SOUND_COMPLECTATION_NAME);
String productNumber = previewFullTO.getItemTO().getFeatureInstances().get("Product number");
String productRewritedName = previewFullTO.getItemTO().getProductTypeRewrited();
return new SoundData(soundData, productRewritedName, Long.valueOf(productNumber), soundLength);
}
}
}
}
return null;
}
guest 20.01.2009 12:51 # −0.2
У меня и хуже циклы были - иногда просто необходимо, а отдельные функцие под это выделять нецелесообразно
guest 25.03.2009 14:34 # 0
Have you seen stubs generated by JAXB???
This code is ok.
guest 31.03.2009 16:14 # −0.2
guest 22.10.2009 05:27 # +0.2
В вызывающем коде производится цикл ПО ТОМУ ЖЕ множеству, что и во вложенном.
Происходит нечто типо следующего:
1) В цикле для каждого obj вызывается метод.
2) В методе производится такой же цикл, и находится этот же объект obj.
3) И уже потом с этим объектом производятся какие-то действия.
В общем, зачет )