SortedSet<Type> extraImports = new TreeSet<Type>();
MapperConfig mapperPrism = MapperConfig.getInstanceOn( element );
for ( TypeMirror extraImport : mapperPrism.imports() ) {
Type type = typeFactory.getType( extraImport );
extraImports.add( type );
}
return extraImports;