job.addRunnable(new JobRunnable("Export",1.0f){ //$NON-NLS-1$
public Object run() throws Exception{
DataUtil serializer=new DataUtil();
System.out.println("Serialization..."); //$NON-NLS-1$
long t1=System.currentTimeMillis();
DocumentData projectData=serializer.serializeDocument(importer.getProject());
projectData.setMaster(true);
projectData.setLocal(true);
long t2=System.currentTimeMillis();
System.out.println("Serialization...Done in "+(t2-t1)+" ms"); //$NON-NLS-1$ //$NON-NLS-2$
File f=new File(importer.getFileName());
System.out.println("Saving "+f+"..."); //$NON-NLS-1$ //$NON-NLS-2$
t1=System.currentTimeMillis();