return new PropositionFormat() {
public void write(NounPart subject, Relationship verb,
NounPart object) {
// these are the knowledge items that will be represented in the format.
SimpleNoun from = getExistingNounOnDiagram(subject, ii);
NounRelationshipBinding sr = new NounRelationshipBinding(
subject, verb);
PropositionBinding or = new PropositionBinding(subject, verb, object);
SimpleNoun to = NounFactory.getRawSimpleNoun(object);
Container cont = c == null ? getContainerFor(from, verb, ii) : c;
DiagramElement toEl = toElementFormat.returnElement(cont, to,
ii);
if ((from != null) && (verb != null)) {