return createFileModel( fullName, lang, create, strict, style );
}
public Model createFileModel( File fullName, String lang, boolean create, boolean strict, ReificationStyle style )
{
NotifyOnClose notify = NotifyOnClose.ignore;
Graph fileGraph = new FileGraph( notify, fullName, lang, create, strict, style );
return ModelFactory.createModelForGraph( fileGraph );
}