writer.print(cls + "#" + refId + " ");
}
writer.println();
} else if (association.getSpecification().isParseable()) {
final ParseableFacet facet = associatedObject.getSpecification().getFacet(ParseableFacet.class);
String encodedValue = facet.parseableTitle(associatedObject);
encodedValue = encodedValue.replaceAll("\n", "\\n");
writer.println(encodedValue);
} else if (association.isOneToOneAssociation()) {
final String refId = saved.getId(associatedObject);
final String cls = associatedObject.getSpecification().getFullIdentifier();