* Model containing the statements.
*/
private void _addModelToGraph(_Conn _conn, OntModel model,
String ontologyUri) {
AGGraph agGraph = _conn._maker.createGraph(ontologyUri);
AGModel agModel = new AGModel(agGraph);
agModel.add(model);
// finally, add the new stuff into the triple store:
_conn._model.add(agModel);
}