}
Class< ? > modelClass = modelToViewClassMap.get(entityClass);
// instantiate, load the properties, and return the ModelView
ModelView modelView = (ModelView) reflectiveInstantiator.instantiateObject(modelClass);
modelView.loadProperties(properties);
// If the ComplexExplanation is included, populate the ModelView with
// it. These properties can't be imported by the ModelView because that
// class needs to only deal with simple objects that GWT can support -
// ComplexExplanation not being one of them.