SwingWebComponentManager man = (SwingWebComponentManager) swSession.getComponentManager();
List urlLocals = man.getURLLocals();
Iterator it = urlLocals.iterator();
while (it.hasNext())
{
URLLocal local = (URLLocal) it.next();
Object value = param.get(local.getName());
if (value instanceof String[])
{
value = ((String[]) value)[0];
}
String paramValue = (String) value;
local.setValue(paramValue);
}
}