LinkedList<Term> termList = new LinkedList<Term>();
for (org.mizartools.system.xml.Term term : pred.getTermList()) {
termList.add(getTerm(abstractSignature, term, vid));
}
if (pred.getKind() == Kind.P) {
if (pred.getNr() == null) throw new DliException();
formulaDli = new PrivateFormula(pred.getNr(), termList);
}
else {
ItemId itemId = getItemId(abstractSignature, pred.getKind(), pred.getNr());
switch (pred.getKind()){
case V :
LinkedList<Adjective> adjectiveList = new LinkedList<Adjective>();
Type type = new Type(adjectiveList, itemId, termList, false);
formulaDli = new Is(termList, type);
break;
default :
formulaDli = new Pred(itemId, termList);
}
}
} else if (formula instanceof org.mizartools.system.xml.Is){
org.mizartools.system.xml.Is is = (org.mizartools.system.xml.Is) formula;
Type type = getType(abstractSignature, is.getTyp());
LinkedList<Term> termList = new LinkedList<Term>();
termList.add(getTerm(abstractSignature, is.getTerm(), vid));
formulaDli = new Is(termList, type);
} else if (formula instanceof org.mizartools.system.xml.Verum){
formulaDli = new Verum();
} else throw new DliException();
return formulaDli;
}