*/
private void makeFieldPersistent(String fieldName, ClassTransformation transformation,
MutableComponentModel model)
{
String fieldType = transformation.getFieldType(fieldName);
Persist annotation = transformation.getFieldAnnotation(fieldName, Persist.class);
// Record the type of persistence, until needed later.
String logicalFieldName = model.setFieldPersistenceStrategy(fieldName, annotation.value());
String defaultFieldName = transformation.addField(Modifier.PRIVATE, fieldType, fieldName
+ "_default");
transformation.extendMethod(TransformConstants.CONTAINING_PAGE_DID_LOAD_SIGNATURE, format(