String recent = SoapUI.getSettings().getString( RECENT_PROJECTS_SETTING, null );
StringToStringMap history = recent == null ? new StringToStringMap() : StringToStringMap.fromXml( recent );
if( history.size() > 0 )
{
for( Iterator<String> i = history.keySet().iterator(); i.hasNext(); )
{
String filePath = i.next();
DefaultActionMapping<WorkspaceImpl> mapping = new DefaultActionMapping<WorkspaceImpl>(
ImportWsdlProjectAction.SOAPUI_ACTION_ID, null, null, false, filePath );
String wsName = history.get( filePath );