232233234235236237238239240241242
Iterator<Property> pi = ep.propertyIterator(); while (pi.hasNext()) { Property p = pi.next(); Meaning m = p.getMeaningEnum(); if (m != null) { if (m.compareTo(Meaning.BLOB) != 0 && m.compareTo(Meaning.TEXT) != 0) { cost += 20; } } }
233234235236237238239240241242243
while (pi.hasNext()) { Property p = pi.next(); Meaning m = p.getMeaningEnum(); if (m != null) { if (m.compareTo(Meaning.BLOB) != 0 && m.compareTo(Meaning.TEXT) != 0) { cost += 20; } } } }
276277278279280281282283284285286
277278279280281282283284285286287