for (org.mizartools.system.xml.Adjective adjective : cluster.getAdjectiveList()){
Boolean value = adjective.getValue();
if (value == null) value = true;
ItemId itemId = getItemId(abstractSignature, adjective);
LinkedList<Term> termList = getTermList(abstractSignature, adjective.getTermList());
Adjective adjectiveDli = new Adjective(value, itemId, termList);
adjectiveList.add(adjectiveDli);
}
}
return adjectiveList;
}