this.source.loadCoreData();
File aux=new File("./data/"+getName()+"/"+getName()+".sta");
if(!aux.exists())
{
File f=new File("./data/"+getName()+"/");
f.mkdirs();
FileWriter fout=new FileWriter("./data/"+getName()+"/"+getName()+".sta");
BufferedWriter out=new BufferedWriter(fout);
this.glossCount=this.source.getGlossCount();
this.wordCount=this.source.getWordCount();
out.write(String.valueOf(this.glossCount)+"\n");