* @param choreographyLibrary the choreography library where to store loaded choreographies.
*
*/
public void loadChoreographies(ChoreographyLibrary choreographyLibrary)
{
for (File f : new File(this.serializedFilesPath, "choreographies").listFiles(new ChorFileNameFilter()))
{
// Reading choreography file
String choreographyName = f.getName().substring(0, f.getName().lastIndexOf('.'));
Choreography c = null;
try